Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 222 for Precedence (0.17 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/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                if (!precedence.add(attribute)) {
                    throw new IllegalArgumentException(String.format("Attribute '%s' precedence has already been set.", attribute.getName()));
                }
            }
        }
    
        @Override
        public void setAttributeDisambiguationPrecedence(List<Attribute<?>> attributes) {
            precedence.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

        a. If the attribute has a known precedence, Gradle will stop as soon as there is a single candidate remaining.
        b. After all extra attributes with precedence are considered, the remaining candidates can be chosen if they are compatible with all of the non-ordered disambiguation rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top