Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 359 for Precedence (0.16 sec)

  1. cmd/kubeadm/app/util/env_test.go

    				},
    			},
    			mergedEnv: []v1.EnvVar{
    				{Name: "Foo1", Value: "Bar1"},
    				{Name: "Foo2", Value: "Bar2"},
    				{Name: "Foo3", Value: "Bar3"},
    			},
    		},
    		{
    			name: "extraEnv env take precedence over the proxyEnv",
    			proxyEnv: []kubeadmapi.EnvVar{
    				{
    					EnvVar: v1.EnvVar{Name: "Foo1", Value: "Bar1"},
    				},
    				{
    					EnvVar: v1.EnvVar{Name: "Foo2", Value: "Bar2"},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 09:09:19 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/securitycontext/util.go

    }
    
    // DetermineEffectiveSecurityContext returns a synthesized SecurityContext for reading effective configurations
    // from the provided pod's and container's security context. Container's fields take precedence in cases where both
    // are set
    func DetermineEffectiveSecurityContext(pod *v1.Pod, container *v1.Container) *v1.SecurityContext {
    	effectiveSc := securityContextFromPodSecurityContext(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    func (ps *printState) endScope(b byte) {
    	ps.scopes--
    	ps.writeByte(b)
    }
    
    // precedence is used for operator precedence. This is used to avoid
    // unnecessary parentheses when printing expressions in the LLVM style.
    type precedence int
    
    // The precedence values, in order from high to low.
    const (
    	precPrimary precedence = iota
    	precPostfix
    	precUnary
    	precCast
    	precPtrMem
    	precMul
    	precAdd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/RendererUtilsTest.groovy

            where:
            toStringReturns     | expected
            null                | "null"
            "toString() called" | "toString() called"
        }
    
        def "toString() declared in super-class takes precedence over Named"() {
            def value = new NamedExtendingHasToString(name: "name", superToString: "super-to-string")
    
            expect:
            RendererUtils.displayValueOf(value) == "super-to-string"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectDependencyWithoutTestCodeIntegrationTest.groovy

            classpath('b').project('a').assertHasAttribute(EclipsePluginConstants.WITHOUT_TEST_CODE_ATTRIBUTE_KEY, 'false')
        }
    
        @ToBeFixedForConfigurationCache
        def "eclipse.classpath.containsTestFixtures configuration has precedence over the applied java-test-fixtures plugin"() {
            file('a/build.gradle') << """
                plugins {
                    id 'java-test-fixtures'
                }
    
                eclipse {
                    classpath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/work/DisableCachingByDefault.java

     *
     * <p>Caching for individual task instances can be enabled and disabled via {@link TaskOutputs#cacheIf(String, Spec)} or disabled via {@link TaskOutputs#doNotCacheIf(String, Spec)}.
     * Using these APIs takes precedence over the presence (or absence) of {@code @DisableCachingByDefault}.</p>
     *
     * @see org.gradle.api.tasks.CacheableTask
     * @see org.gradle.api.artifacts.transform.CacheableTransform
     *
     * @since 7.0
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 20 20:53:24 UTC 2021
    - 1.9K 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. cmd/kubelet/app/server_test.go

    				require.NoError(t, err, "failed to merge kubelet drop-in configs")
    			}
    
    			// Use kubelet config flag precedence
    			err := kubeletConfigFlagPrecedence(kubeletConfig, test.cliArgs)
    			require.NoError(t, err, "failed to set the kubelet config flag precedence")
    
    			// Verify the merged configuration fields
    			for fieldName, expectedValue := range test.overwrittenConfigFields {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/GradleUserHomeLookupTest.groovy

            cleanup:
            env.removeEnvironmentVariable(GradleUserHomeLookup.GRADLE_USER_HOME_ENV_KEY)
        }
    
        def "Gradle user home set by system property takes precedence over environment variable"() {
            when:
            String sysPropDirName = 'some/dir'
            String envVarDirName = 'other/dir'
            System.setProperty(GradleUserHomeLookup.GRADLE_USER_HOME_PROPERTY_KEY, sysPropDirName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. 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)
Back to top