Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 301 for Precedence (0.16 sec)

  1. manifests/charts/gateways/istio-ingress/templates/zzz_profile.yaml

    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/zzz_profile.yaml

    The original version of this file is located at /manifests directory.
    If you want to make a change in this file, edit the original one and run "make gen".
    
    Complex logic ahead...
    We have three sets of values, in order of precedence (last wins):
    1. The builtin values.yaml defaults
    2. The profile the user selects
    3. Users input (-f or --set)
    
    Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2).
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/util/cmdutil.go

    		return file
    	}
    	// Find a config in the standard locations using DefaultClientConfigLoadingRules,
    	// but also consider the default config path.
    	rules := clientcmd.NewDefaultClientConfigLoadingRules()
    	rules.Precedence = append(rules.Precedence, kubeadmconstants.GetAdminKubeConfigPath())
    	file = rules.GetDefaultFilename()
    	klog.V(1).Infof("Using kubeconfig file: %s", file)
    	return file
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. istioctl/pkg/config/config.go

    		fmt.Fprintf(w, "%s\t%s\t%v\n", flag, viper.GetString(flag), configSource(flag, v))
    	}
    	return w.Flush()
    }
    
    func configSource(flag string, v env.VariableInfo) string {
    	// Environment variables have high precedence in Viper
    	if v.IsSet() {
    		return "$" + v.GetName()
    	}
    
    	if viper.InConfig(flag) {
    		return root.IstioConfig
    	}
    
    	return "default"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top