Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for precedence (0.24 sec)

  1. docs/en/docs/tutorial/schema-extra-example.md

    And then the new OpenAPI 3.1.0 was based on the latest version (JSON Schema 2020-12) that included this new field `examples`.
    
    And now this new `examples` field takes precedence over the old single (and custom) `example` field, that is now deprecated.
    
    This new `examples` field in JSON Schema is **just a `list`** of examples, not a dict with extra metadata as in the other places in OpenAPI (described above).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                }
            }
    
            return result;
        }
    
        private void setupWorkspaceReader(MavenSession session, MavenChainedWorkspaceReader chainedWorkspaceReader) {
            // Desired order of precedence for workspace readers before querying the local artifact repositories
            Set<WorkspaceReader> workspaceReaders = new LinkedHashSet<>();
            // 1) Reactor workspace reader
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

    					k := kube.EnableCrdWatcher(c.client)
    					sa.AddRunningKubeSourceWithRevision(k, revisionSpecified, c.remote)
    				}
    			}
    
    			// If we explicitly specify mesh config, use it.
    			// This takes precedence over default mesh config or mesh config from a running Kube instance.
    			if meshCfgFile != "" {
    				_ = sa.AddFileKubeMeshConfig(meshCfgFile)
    			}
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 17K bytes
    - Viewed (0)
  4. fastapi/openapi/utils.py

                        for param in parameters
                        if param.get("required")
                    }
                    # Make sure required definitions of the same parameter take precedence
                    # over non-required definitions
                    all_parameters.update(required_parameters)
                    operation["parameters"] = list(all_parameters.values())
                if method in METHODS_WITH_BODY:
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 21.8K bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/kubeinject.go

    				return c.Parent().PersistentPreRunE(c, args)
    			}
    
    			return nil
    		},
    	}
    
    	injectCmd.PersistentFlags().StringVar(&meshConfigFile, "meshConfigFile", "",
    		"Mesh configuration filename. Takes precedence over --meshConfigMapName if set")
    	injectCmd.PersistentFlags().StringVar(&injectConfigFile, "injectConfigFile", "",
    		"Injection configuration filename. Cannot be used with --injectConfigMapName")
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 29 02:29:02 GMT 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/archive/zip/writer.go

    		fh.Flags |= 0x800
    	}
    
    	fh.CreatorVersion = fh.CreatorVersion&0xff00 | zipVersion20 // preserve compatibility byte
    	fh.ReaderVersion = zipVersion20
    
    	// If Modified is set, this takes precedence over MS-DOS timestamp fields.
    	if !fh.Modified.IsZero() {
    		// Contrary to the FileHeader.SetModTime method, we intentionally
    		// do not convert to UTC, because we assume the user intends to encode
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // FlowSchema is among those with the numerically lowest (which we take to be logically highest)
      // MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000].
      // Note that if the precedence is not specified, it will be set to 1000 as default.
      // +optional
      optional int32 matchingPrecedence = 2;
    
      // `distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // FlowSchema is among those with the numerically lowest (which we take to be logically highest)
      // MatchingPrecedence.  Each MatchingPrecedence value must be ranged in [1,10000].
      // Note that if the precedence is not specified, it will be set to 1000 as default.
      // +optional
      optional int32 matchingPrecedence = 2;
    
      // `distinguisherMethod` defines how to compute the flow distinguisher for requests that match this schema.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  9. doc/go1.22.html

      as in <code>/exact/match/{$}</code>.
    </p>
    
    <p>
      If two patterns overlap in the requests that they match, then the more specific pattern takes precedence.
      If neither is more specific, the patterns conflict.
      This rule generalizes the original precedence rules and maintains the property that the order in which
      patterns are registered does not matter.
    </p>
    
    <p>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  10. istioctl/pkg/precheck/precheck.go

    					"PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING", "1.20",
    					"previously, VirtualServices with overlapping wildcard hosts would have the oldest "+
    						"VirtualService take precedence. Now, the most specific VirtualService will win", "1.20"),
    				)
    				continue
    			}
    		}
    	}
    	return nil
    }
    
    func ObjectToInstance(c controllers.Object) *resource.Instance {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top