Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 344 for Precedence (0.39 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/apiextensions_client.go

    		return nil, err
    	}
    	return NewForConfigAndClient(&config, httpClient)
    }
    
    // NewForConfigAndClient creates a new ApiextensionsV1beta1Client for the given config and http client.
    // Note the http client provided takes precedence over the configured transport values.
    func NewForConfigAndClient(c *rest.Config, h *http.Client) (*ApiextensionsV1beta1Client, error) {
    	config := *c
    	if err := setConfigDefaults(&config); err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            args "-Dmaven.repo.local=${artifactRepo.rootDir.getAbsolutePath()}"
            run 'retrieve'
    
            then:
            hasArtifact(moduleA)
        }
    
        def "local repository in user settings take precedence over the local repository global settings"() {
            given:
            def globalRepo = mavenLocal("globalArtifactRepo")
            def userRepo = mavenLocal("userArtifactRepo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/JavaConfigurabilityCrossVersionSpec.groovy

            } else {
                env.java.jvmArguments.contains("-Xmx512m")
            }
            env.java.jvmArguments.contains("-XX:+HeapDumpOnOutOfMemoryError")
        }
    
        def "tooling api provided jvm args take precedence over gradle.properties"() {
            file('build.gradle') << """
    assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-Xmx53m')
    assert System.getProperty('some-prop') == 'BBB'
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/apiextensions_client.go

    		return nil, err
    	}
    	return NewForConfigAndClient(&config, httpClient)
    }
    
    // NewForConfigAndClient creates a new ApiextensionsV1Client for the given config and http client.
    // Note the http client provided takes precedence over the configured transport values.
    func NewForConfigAndClient(c *rest.Config, h *http.Client) (*ApiextensionsV1Client, error) {
    	config := *c
    	if err := setConfigDefaults(&config); err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 04:39:39 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/cds_test.go

    			// The Service has precedence, so its cluster will be used
    			sans: []string{"spiffe://cluster.local/ns/default/sa/pod"},
    		},
    		{
    			name:    "Kubernetes service and NONE ServiceEntry ISTIO_MUTUAL",
    			objs:    []runtime.Object{service, pod, endpoint},
    			configs: []config.Config{drIstioMTLS, seNONE},
    			// The Service has precedence, so its cluster will be used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/workcmd/work.go

    that could be controlled by this version, but for now the version
    specified has no effect.
    
    The replace directive has the same syntax as the replace directive in a
    go.mod file and takes precedence over replaces in go.mod files.  It is
    primarily intended to override conflicting replaces in different workspace
    modules.
    
    To determine whether the go command is operating in workspace mode, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    	"k8s.io/apimachinery/pkg/runtime"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/klog/v2"
    )
    
    type Source uint
    
    // The GroupVersion from the lowest Source takes precedence
    const (
    	AggregatorSource Source = 0
    	BuiltinSource    Source = 100
    	CRDSource        Source = 200
    )
    
    // This handler serves the /apis endpoint for an aggregated list of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            when:
            runTask { withSystemProperties('mySystemProperty' : 'newValue') }
    
            then:
            hasSystemProperty('mySystemProperty', 'newValue')
        }
    
        def "JVM arguments have precedence over system properties"() {
            when:
            runTask {
                withSystemProperties('customKey' : 'syspropValue')
                addJvmArguments('-DcustomKey=jvmargValue')
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubelet/flags.go

    	nodeRegOpts              *kubeadmapi.NodeRegistrationOptions
    	pauseImage               string
    	registerTaintsUsingFlags bool
    }
    
    // GetNodeNameAndHostname obtains the name for this Node using the following precedence
    // (from lower to higher):
    // - actual hostname
    // - NodeRegistrationOptions.Name (same as "--node-name" passed to "kubeadm init/join")
    // - "hostname-override" flag in NodeRegistrationOptions.KubeletExtraArgs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top