resolver
Here are 225 public repositories matching this topic...
We just need a piece of documentation because there is literally no documentation about directive locations except from the spec. The spec is not easy to read. Something like this would make sense
directive @field_definition on FIELD_DEFINITION
directive @argument_definition on ARGUMENT_DEFINITION
directive @object on OBJECT
directive @interface on INTERFACE
interface Foo @inter
The unbound.conf(5)
page doesn't say how unbound
handles a list of upstream servers it gets via stub-addr
(or forward-addr
).
- Does it always use the first one first, and fall back to the 2nd(, 3rd etc.) if some condition is met? (If so, what condition? Timeout? SERVFAIL? DNSSEC verification failure?)
- Does it use them in round-robin fashion?
- Does it choose one to query randomly?
-
Updated
Jan 9, 2020 - Ruby
Currently the example value can have a different data structure that is defined in the schema and the swagger-cli validate
doesn't rise an error.
example:
foo:
bar: a
baz: b
type: object
properties:
foo:
type: integer
format: int32
default: 0
I think it would be very useful if the example value would be validated against
-
Updated
Jun 28, 2020 - Go
It would be very helpful if you could document in the README or on the API website which versions of JSON Schema are supported. For example draft-04
, draft-06
and draft-07
.
-
Updated
Mar 7, 2020 - JavaScript
-
Updated
Apr 15, 2020 - Python
The docs do not show an example of resolveDependees
. I am getting an error when trying to create a resolver the following way:
const poolShareValue = pipeResolvers(
resolveDependees(['totalPoolShares', 'poolValue']),
([totalPoolShares, poolValue]) => {
const ethPerShare = totalPoolShares.toNumber() > 0 ? parseFloat(utils.formatEther(poolValue)) / totalPoolShares.toNumber() :
I have an issue with eslint throwing errors that it can't resolve a module even though it's there and works fine with the linter disabled. Trying to fix it and found this module but the description doesn't at all tell me what this package actually does or why one would want to use it.
is need some configuration when running on kubernetes cluster
like RBAC or something like that?
this error messages:
ERROR: 2019/10/29 03:34:29 kuberesolver: watching ended with error='invalid response code 403', will reconnect again
-
Updated
Nov 5, 2018 - Scala
-
Updated
Jun 3, 2020 - JavaScript
-
Updated
Jun 12, 2020
In YAML you can write strings without quotes. For some specific cases you are forced to use quotes, for example when you put digits, but you want them to be of type string.
But when you write schema and set type of variable to string - when you provide example
you expect that it will also be of type string. But it's converted to the python as integer.
Expected Behaviour
Some schema in `req
fix husky warning
Warning: Setting commit-msg script in package.json > scripts will be deprecated
Please move it to husky.hooks in package.json, a .huskyrc file, or a husky.config.js file
Or run ./node_modules/.bin/husky-upgrade for automatic update
See https://github.com/typicode/husky for usage
-
Updated
Mar 11, 2019 - JavaScript
Goroutine leaking
Service query loop in watchConsulService
is not terminated on ctx.Done()
.
The fix is shown in A Tour of Go: Concurrency.
res := make(chan []string)
quit := make(chan struct{})
select {
case res <- ee:
-
Updated
Apr 27, 2018 - JavaScript
-
Updated
May 22, 2020 - Shell
-
Updated
May 26, 2020 - Java
-
Updated
Jun 26, 2020 - TypeScript
Improve this page
Add a description, image, and links to the resolver topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the resolver topic, visit your repo's landing page and select "manage topics."
VSCode not giving auto suggestions of file name inside the directory once we are using alias name with babel module resolver plugin for react native .
I am having .js file inside the path @components but it is simply giving the suggestion as
@components/ showing the suggestion as {} react,{} props,{} react-native
My .babelrc file :
{
"presets": [
"react-native"
],