Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Precedence (0.19 sec)

  1. pilot/pkg/config/kube/gateway/testdata/route-precedence.status.yaml.golden

    Lior Lieberman <******@****.***> 1707338903 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/SettingsSchemaAccessorsIntegrationTest.kt

                        configure<my.MySettingsExtension> {
                            action()
                        }
                    }
                """
            )
    
            val result = build("ok")
    
            // then:
            result.assertOutputContains("It's 42!")
            result.assertOutputContains("Plugin extension takes precedence!")
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/PropertiesLoaderIntegrationTest.groovy

        @Rule SetSystemProperties systemProperties = new SetSystemProperties()
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "build property set on command line takes precedence over properties file"() {
            when:
            file('gradle.properties') << """
    org.gradle.configureondemand=true
    """
            buildFile << """
    task assertCodEnabled {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. manifests/zzz_profile.yaml

    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. manifests/charts/base/templates/zzz_profile.yaml

    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top