Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for Precedence (0.17 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultGradlePropertiesControllerTest.groovy

            controller.loadGradlePropertiesFrom(new File('b'), true)
    
            then:
            thrown(IllegalStateException)
        }
    
        def "environment variables have precedence over project properties"() {
            given:
            def settingsDir = new File("settingsDir")
            def gradleUserHomePropertiesFile = propertiesFileFromDir(gradleUserHome)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 11:52:10 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

            // We need to take the existing requested attributes and sort them in "precedence" order
            // This returns a structure that tells us the order of requestedAttributes by their index in
            // requestedAttributes.
            //
            // If the requested attributes are [ A, B, C ]
            // If the attribute precedence is [ C, A ]
            // The indices are [ A: 0, B: 1, C: 2 ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  6. pilot/pkg/model/proxy_config_test.go

    			proxy: newMeta("test-ns", nil, nil),
    			expected: &meshconfig.ProxyConfig{
    				Concurrency: v(3),
    				Image: &v1beta1.ProxyImage{
    					ImageType: "debug",
    				},
    			},
    		},
    		{
    			name: "CR takes precedence over meshConfig.defaultConfig",
    			configs: []config.Config{
    				newProxyConfig("ns", istioRootNamespace,
    					&v1beta1.ProxyConfig{
    						Concurrency: v(3),
    					}),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:19 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    If you enable auto-detection in your build, custom toolchains extend the set of toolchain locations.
    Gradle picks a toolchain according to the <<sec:precedence,precedence rules>>.
    ====
    
    [[sec:precedence]]
    == Toolchain installations precedence
    
    Gradle will sort all the JDK/JRE installations matching the toolchain specification of the build and will pick the first one.
    Sorting is done based on the following rules:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      // `config.calibration_options.representative_datasets` and
      // `config.static_range_ptq_preset.representative_datasets` are both
      // specified. In this case, the one set to the `calibration_options` takes
      // precedence.
      QuantizationConfig config{};
      RepresentativeDatasetConfig& top_level_dataset_config =
          *config.mutable_calibration_options()->add_representative_datasets();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

            war.assertContainsFile('META-INF/MANIFEST.MF')
            war.assertContainsFile('WEB-INF/webinf1/file1.txt')
            war.assertContainsFile('WEB-INF/dir2/file2.txt')
        }
    
        def "exclude duplicates: webXml precedence over webInf"() {
            given:
            createDir('bad') {
                file('web.xml')
            }
            file('good.xml')
    
            file('bad/web.xml').text = 'bad'
            file('good.xml').text = 'good'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * defined precedence onto each other to achieve proper precedence. Precedence is defined as:
         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
         *     <li>User properties (highest precedence)</li>
         * </ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top