Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Precedence (0.15 sec)

  1. src/net/addrselect.go

    		attrSourceDB.Label == attrDB.Label {
    		return preferDB
    	}
    
    	// Rule 6: Prefer higher precedence.
    	// If Precedence(DA) > Precedence(DB), then prefer DA.  Similarly, if
    	// Precedence(DA) < Precedence(DB), then prefer DB.
    	if attrDA.Precedence > attrDB.Precedence {
    		return preferDA
    	}
    	if attrDA.Precedence < attrDB.Precedence {
    		return preferDB
    	}
    
    	// Rule 7: Prefer native transport.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

            kind: Kind,
            precedence: Precedence,
        ) : KaCompoundAccess(operationPartiallyAppliedSymbol) {
            public val kind: Kind by validityAsserted(kind)
            public val precedence: Precedence by validityAsserted(precedence)
    
            public enum class Kind {
                INC, DEC
            }
    
            public enum class Precedence {
                PREFIX, POSTFIX
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    //   `calibration_options`. In that case, the explicit configs take precedence
    //   and the preset's configs are ignored.
    //   - For `QuantizationSpecs`, the expanded `QuantizationSpec`s will be
    //   populated first and user-provided `QuantizationSpec`s, if any, will be
    //   appended. This expresses the fact that user-provided specs take precedence.
    // * Preset unspecified
    //   - No-op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    					},
    				},
    				{
    					"global takes precedence over default config",
    					"",
    					"",
    					[]proxyConfigInstance{
    						newProxyConfig("global", "istio-system", nil, map[string]string{
    							"A": "3",
    						}),
    					},
    					map[string]string{
    						"A": "3",
    						"B": "2",
    					},
    				},
    				{
    					"pod annotation takes precedence over namespace",
    					"{ \"proxyMetadata\": {\"A\": \"5\"} }",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelRepositoryHolder.java

         */
        public enum RepositoryMerging {
    
            /**
             * The repositories declared in the POM have precedence over the repositories specified in the request.
             */
            POM_DOMINANT,
    
            /**
             * The repositories specified in the request have precedence over the repositories declared in the POM.
             */
            REQUEST_DOMINANT,
        }
    
        final Session session;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_ODML_CONVERTER_FOLDERS_H_
    
    namespace mlir::odml {
    
    // Populates the pattern set with all folding patterns. These patterns
    // are intended to have precedence over any other patterns added to the set.
    void PopulateFolderPatterns(RewritePatternSet &patternSet);
    
    }  // namespace mlir::odml
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:33:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/cds_test.go

    			// The Service has precedence, so its cluster will be used
    			sans: []string{"spiffe://cluster.local/ns/default/sa/pod"},
    		},
    		{
    			name:    "Kubernetes service and NONE ServiceEntry ISTIO_MUTUAL",
    			objs:    []runtime.Object{service, pod, endpoint},
    			configs: []config.Config{drIstioMTLS, seNONE},
    			// The Service has precedence, so its cluster will be used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            when:
            runTask { withSystemProperties('mySystemProperty' : 'newValue') }
    
            then:
            hasSystemProperty('mySystemProperty', 'newValue')
        }
    
        def "JVM arguments have precedence over system properties"() {
            when:
            runTask {
                withSystemProperties('customKey' : 'syspropValue')
                addJvmArguments('-DcustomKey=jvmargValue')
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/test/env/istio.go

    	// nolint: golint, revive, stylecheck
    	GRPC_ECHO_IMAGE Variable = "GRPC_ECHO_IMAGE"
    
    	// KUBECONFIG is the list of Kubernetes configuration files. If configuration files are specified on
    	// the command-line, that takes precedence.
    	// nolint: revive, stylecheck
    	KUBECONFIG Variable = "KUBECONFIG"
    
    	// IstioSrc is the location of istio source ($TOP/src/istio.io/istio
    	IstioSrc = REPO_ROOT.ValueOrDefaultFunc(getDefaultIstioSrc)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

    {{- /* Set up the selectors. First section is for revision, rest is for "default" revision */}}
    
    {{- /* Case 1: namespace selector matches, and object doesn't disable */}}
    {{- /* Note: if both revision and legacy selector, we give precedence to the legacy one */}}
    {{- include "core" (mergeOverwrite (deepCopy $whv) (dict "Prefix" "rev.namespace.") ) }}
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top