Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for Precedence (0.59 sec)

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

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

    Mike Morris <******@****.***> 1702326113 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r66/CommandLineOptionsCrossVersionSpec.groovy

                launcher.setJvmArguments("-Dorg.gradle.workers.max=12")
            }
    
            then:
            result.standardOutput.contains("max workers: 12")
        }
    
        def "command-line arguments take precedence over system properties"() {
            when:
            def result = withBuild { BuildLauncher launcher ->
                launcher.withArguments("-Dorg.gradle.workers.max=4", "--max-workers=12")
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

                    // attribute that doesn't have a precedence in consumer
                    (x): "x",
                    // attribute that has a lower precedence than the next one
                    (c): AttributeTestUtil.named(ConcreteNamed, "c"),
                    // attribute with the highest precedence
                    (a): flavor("a"),
                    // attribute that doesn't have a precedence
                    (Attribute.of("z", String)): "z"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. src/go/token/token.go

    	if s == "" {
    		s = "token(" + strconv.Itoa(int(tok)) + ")"
    	}
    	return s
    }
    
    // A set of constants for precedence-based expression parsing.
    // Non-operators have lowest precedence, followed by operators
    // starting with precedence 1 up to unary operators. The highest
    // precedence serves as "catch-all" precedence for selector,
    // indexing, and other operator and delimiter tokens.
    const (
    	LowestPrec  = 0 // non-operators
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyDetails.java

         * The actual method instance used is significant.
         * The method instance is for the “nearest” declaration, where classes take precedence over interfaces.
         * Interface precedence is breadth-first, declaration.
         *
         * The order of the methods follows the same precedence.
         * That is, the “nearer” declarations are earlier in the list.
         */
        Collection<Method> getGetters();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top