cadence
Here are 96 public repositories matching this topic...
-
Updated
Jul 13, 2021 - Go
Issue To Be Solved
Currently the for-in loop is only supported for struct arrays, not resource arrays.
Enable for-in loops to iterate over arrays of resources, binding an authorized reference:
pub resource R {
pub let name: String
init(name: String) {
self.name = name
}
}
let rs <- [
<-create R(name: "bar"),
<-create R(name: "foo")-
Updated
Jul 29, 2020 - PHP
https://github.com/uber/cadence/blob/70f3f582c91f1bb2e265287d91390a1d31e2c2de/common/definition/indexedKeys.go#L48
It's a system defined attribute in server
and it's being used by go client by system:
https://github.com/uber-go/cadence-client/blob/90498dff0c292bf08a868b979d867d7b74196079/internal/workflow.go#L990
https://github.com/uber-go/cadence-client/blob/90498dff0c292bf08a868b979d867d7b
-
Updated
Jul 9, 2021 - Python
-
Updated
Dec 22, 2016 - Python
-
Updated
Mar 29, 2019 - Dockerfile
-
Updated
May 3, 2021
Issue To Be Solved
When deploying a contract to the current account you later want to import that contract into another one. There is no easy way to get the current accounts.
(Optional): Suggest A Solution
If it was possible to copy the current account into the clipboard or show it in an extension window it would really help
-
Updated
Aug 10, 2019 - Verilog
-
Updated
Mar 5, 2021 - C++
-
Updated
Jul 21, 2021 - JavaScript
-
Updated
Mar 18, 2021 - Python
-
Updated
Jul 21, 2021 - Go
Add more cells
The code provides some basic drawing functions such as rectangles, but it relies on the existance of cell generators. These need to be written. Anything that is needed for layout (inductors, capacitors, optical components, diodes, transistors, text etc.) is welcome.
If any drawing functions are missing I can add them.
-
Updated
May 28, 2021 - Vim script
-
Updated
Mar 22, 2020 - Java
Improve this page
Add a description, image, and links to the cadence topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cadence topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
Need to search using LIKE operator with search attributes? eg, WorkflowType LIKE
workflowType-prefix.*Right now the workflowType is using keyword type for performance reason so it doesn't support wildcard search.
https://www.elastic.co/guide/en/elasticsearch/reference/current/keyword.html