Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 301 for Precedence (0.23 sec)

  1. releasenotes/notes/45415-overlapping-wildcards.yaml

        content: |
          This fix changes the behavior of overlapping wildcard hosts in VirtualService. Previously, the oldest VirtualService would take precedence
          regardless of whether or not it was the most specific host match. Now, the most specific host match will take precedence. To persist the old behavior,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 09 14:22:50 UTC 2023
    - 786 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/EmptySchemaTest.groovy

            expect:
            EmptySchema.INSTANCE.attributes.empty
            !EmptySchema.INSTANCE.hasAttribute(Attribute.of(String))
        }
    
        def "has no precedence"() {
            expect:
            EmptySchema.INSTANCE.attributeDisambiguationPrecedence.empty
        }
    
        def "cannot set precedence"() {
            when:
            EmptySchema.INSTANCE.attributeDisambiguationPrecedence(Attribute.of("attribute", String))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

        File getGlobalSettingsFile();
    
        /**
         * Sets the global settings file. A non-existent settings file is equivalent to empty settings. If both user
         * settings and global settings are given, the user settings take precedence.
         *
         * @param globalSettingsFile The global settings file, may be {@code null} to disable global settings.
         * @return This request, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

            then:
            converter.convert(properties, layout).properties.get(DaemonBuildOptions.JvmArgsOption.GRADLE_PROPERTY) == '-Xmx128m'
        }
    
        def "root dir properties take precedence over gradle installation home properties"() {
            when:
            def properties = properties()
            def layout = layout(properties)
            rootDir.file("settings.gradle") << ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributePrecedenceSchemaAttributeMatcherTest.groovy

        def highest = Attribute.of("highest", String)
        def middle = Attribute.of("middle", String)
        def lowest = Attribute.of("lowest", String)
        // This has no precedence
        def additional = Attribute.of("usage", String)
    
        static class CompatibilityRule implements AttributeCompatibilityRule<String> {
            @Override
            void execute(CompatibilityCheckDetails<String> details) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompilerOptions.kt

    
    /**
     * Read property value for compiler options.
     *
     * Kotlin compiler options for scripts can be set either via a System property or a Gradle property.
     * System properties have precedence, same as in `LayoutToPropertiesConverter`.
     */
    private
    fun getCompilerOptionBoolean(gradleProperties: GradlePropertiesController, propertyName: String, defaultValue: Boolean, whenUnset: (() -> Unit)? = null): Boolean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 17:11:24 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingRequest.java

         */
        Source getGlobalToolchainsSource();
    
        /**
         * Sets the global toolchains source. If both user toolchains and a global toolchains are given, the user toolchains
         * take precedence.
         *
         * @param globalToolchainsSource The global toolchains source, may be {@code null} to disable global toolchains.
         * @return This request, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. 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)
Back to top