Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 344 for Precedence (0.18 sec)

  1. 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)
  2. src/runtime/cgo/gcc_signal2_ios_arm64.c

    // license that can be found in the LICENSE file.
    
    //go:build lldb
    
    // Used by gcc_signal_darwin_arm64.c when doing the test build during cgo.
    // We hope that for real binaries the definition provided by Go will take precedence
    // and the linker will drop this .o file altogether, which is why this definition
    // is all by itself in its own file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 508 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. pkg/config/mesh/watcher.go

    // mesh config, but takes precedence.
    func (w *internalWatcher) HandleMeshConfigData(yaml string) {
    	w.mutex.Lock()
    	defer w.mutex.Unlock()
    	w.revMeshConfig = yaml
    	merged := w.merged()
    	w.handleMeshConfigInternal(merged)
    }
    
    // HandleUserMeshConfig keeps track of user mesh config overrides. These are merged with the standard
    // mesh config, which takes precedence.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K 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. 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)
Back to top