Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 216 for Precedence (0.15 sec)

  1. pilot/pkg/networking/plugin/authn/authentication.go

    	return res
    }
    
    func needPerPortPassthroughFilterChain(port uint32, node *model.Proxy) bool {
    	// If there is any Sidecar defined, check if the port is explicitly defined there.
    	// This means the Sidecar resource takes precedence over the service. A port defined in service but not in Sidecar
    	// means the port is going to be handled by the pass through filter chain.
    	if node.SidecarScope.HasIngressListener() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            then:
            executedAndNotSkipped ":run"
    
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
        def 'arguments passed via command line take precedence and is not incremental by default'() {
            when:
            run("run", "--args", "2 '3' \"4\"")
    
            then:
            executedAndNotSkipped ":run"
            assertOutputFileIs('''\
            2
            3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. docs/distributed/CONFIG.md

    - Ellipses notation (e.g. `{1...10}`) or bracket notations are fully allowed (e.g. `{a,c,f}`) to have multiple entries in one line.
    
    > NOTE: MinIO environmental variables still take precedence over the `config.yaml` file, however `config.yaml` is preferred over MinIO internal config KV settings via `mc admin config set alias/ <sub-system>`.
    
    ### TODO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemSupportTest.groovy

            // while unlikely that a candidate would expose both JAVA_API_JARS and JAVA_API,
            // this confirms that JAVA_API_JARS takes precedence, per JavaEcosystemSupport
            Usage.JAVA_API          | [JavaEcosystemSupport.DEPRECATED_JAVA_API_JARS, Usage.JAVA_API, JavaEcosystemSupport.DEPRECATED_JAVA_RUNTIME_JARS] | JavaEcosystemSupport.DEPRECATED_JAVA_API_JARS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pkg/config/analysis/local/istiod_analyze.go

    	// List of code and resource suppressions to exclude messages on
    	suppressions []AnalysisSuppression
    
    	// Mesh config for this analyzer. This can come from multiple sources, and the last added version will take precedence.
    	meshCfg *v1alpha1.MeshConfig
    
    	// Mesh networks config for this analyzer.
    	meshNetworks *v1alpha1.MeshNetworks
    
    	// Which kube resources are used by this analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // `QuantizationSpec`s so that specs can be easily passed around or represented
    // as a textproto.
    // Next ID: 2
    message QuantizationSpecs {
      // List of `QuantizationSpec`s. Later spec in the sequence takes precedence.
      //
      // NOTE: Tie-breaking mechanism is not yet supported. Providing multiple
      // `QuantizationSpec` with conflicting quantizable units may result in
      // undefined behavior.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * <pre class='autoTested'>
         * repositories {
         *     mavenLocal()
         * }
         * </pre>
         * <p>
         * The location for the repository is determined as follows (in order of precedence):
         * </p>
         * <ol>
         * <li>The value of system property 'maven.repo.local' if set;</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/status.go

    	// For pods, we enqueue all Ingress if its part of the ingress service
    	c.pods.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    		if c.meshConfig.Mesh().IngressService != "" {
    			// Ingress Service takes precedence
    			return
    		}
    		ingressSelector := c.meshConfig.Mesh().IngressSelector
    
    		// get all pods acting as ingress gateways
    		igSelector := getIngressGatewaySelector(ingressSelector, "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    		}
    		return args[i].Name < args[j].Name
    	})
    	return args
    }
    
    // convertFromArgs takes a slice of arguments and returns an argument map.
    // Duplicate argument keys will be de-duped, where later keys will take precedence.
    func convertFromArgs(in []kubeadm.Arg) map[string]string {
    	if in == nil {
    		return nil
    	}
    	args := make(map[string]string, len(in))
    	for _, arg := range in {
    		args[arg.Name] = arg.Value
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/net/http/servemux121.go

    func (mux *serveMux121) handler(host, path string) (h Handler, pattern string) {
    	mux.mu.RLock()
    	defer mux.mu.RUnlock()
    
    	// Host-specific pattern takes precedence over generic ones
    	if mux.hosts {
    		h, pattern = mux.match(host + path)
    	}
    	if h == nil {
    		h, pattern = mux.match(path)
    	}
    	if h == nil {
    		h, pattern = NotFoundHandler(), ""
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top