Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 167 for Precedence (0.22 sec)

  1. pilot/pkg/networking/core/gateway_simulation_test.go

    			config: createGateway("alpha", "", tcpServer) +
    				createGateway("beta", "", httpServer),
    			calls: []simulation.Expect{
    				{
    					Name: "call tcp",
    					// TCP takes precedence. Since we have no tcp routes, this will result in no listeners
    					Call: simulation.Call{
    						Port:     80,
    						Protocol: simulation.TCP,
    					},
    					Result: simulation.Result{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    }
    
    // MatchResources decides whether to run the admission control policy on an object based
    // on whether it meets the match criteria.
    // The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
    // +structType=atomic
    type MatchResources struct {
    	// NamespaceSelector decides whether to run the admission control policy on an object based
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    	// "kubeadm init".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

        class TypeWithInheritedProperty extends BaseTypeWithInheritedProperty {
            @Override
            String getOverriddenProperty() { "test" }
        }
    
        def "annotation defined on implemented interface takes precedence over superclass annotation"() {
            expect:
            assertProperties TypeWithInheritedPropertyFromSuperClassAndInterface, [
                overriddenProperty: [(COLOR): { it instanceof Color && it.declaredBy() == "interface" }]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    edge("org:foo:{strictly [1.0.0,2.0.0); prefer 1.1.0}", "org:foo:1.1.0")
                }
            }
        }
    
        void "a strict dependency version takes precedence over a higher transitive version"() {
            given:
            repository {
                'org:foo' {
                    '1.0'()
                    '1.1'()
                }
                'org:bar:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // resource. This replaces the deprecated `kubernetes.io/ingress.class`
      // annotation. For backwards compatibility, when that annotation is set, it
      // must be given precedence over this field. The controller may emit a
      // warning if the field and annotation have different values.
      // Implementations of this API should ignore Ingresses without a class
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. pkg/scheduler/scheduler.go

    	// This should only have an effect on ComponentConfig, where it is possible to configure Extenders and
    	// plugin args (and in which case the extender ignored resources take precedence).
    	if len(ignoredExtendedResources) == 0 {
    		return fExtenders, nil
    	}
    
    	for i := range profiles {
    		prof := &profiles[i]
    		var found = false
    		for k := range prof.PluginConfig {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. src/encoding/xml/marshal.go

    				return err
    			}
    		}
    		return nil
    	}
    
    	tinfo, err := getTypeInfo(typ)
    	if err != nil {
    		return err
    	}
    
    	// Create start element.
    	// Precedence for the XML element name is:
    	// 0. startTemplate
    	// 1. XMLName field in underlying struct;
    	// 2. field name/tag in the struct field; and
    	// 3. type name
    	var start StartElement
    
    	if startTemplate != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/math/big/ratconv.go

    	}
    
    	if err == io.EOF {
    		err = nil
    	}
    	if err == nil && !hasDigits {
    		err = errNoDigits
    	}
    	if err == nil {
    		exp, err = strconv.ParseInt(string(digits), 10, 64)
    	}
    	// other errors take precedence over invalid separators
    	if err == nil && (invalSep || prev == '_') {
    		err = errInvalSep
    	}
    
    	return
    }
    
    // String returns a string representation of x in the form "a/b" (even if b == 1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. hack/update-vendor.sh

    # - adds explicit 'require' directives for all transitive dependencies
    # - adds explicit 'replace' directives for all require directives (existing 'replace' directives take precedence)
    function ensure_require_replace_directives_for_all_dependencies() {
      local local_tmp_dir
      local_tmp_dir=$(mktemp -d "${TMP_DIR}/pin_replace.XXXX")
    
      # collect 'require' directives that actually specify a version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top