Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 359 for Precedence (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/test/env/istio.go

    	// nolint: golint, revive, stylecheck
    	GRPC_ECHO_IMAGE Variable = "GRPC_ECHO_IMAGE"
    
    	// KUBECONFIG is the list of Kubernetes configuration files. If configuration files are specified on
    	// the command-line, that takes precedence.
    	// nolint: revive, stylecheck
    	KUBECONFIG Variable = "KUBECONFIG"
    
    	// IstioSrc is the location of istio source ($TOP/src/istio.io/istio
    	IstioSrc = REPO_ROOT.ValueOrDefaultFunc(getDefaultIstioSrc)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. docs/bucket/retention/README.md

    ```
    
    ### Set object lock
    
    PutObject API allows setting per object retention mode and retention duration using `x-amz-object-lock-mode` and `x-amz-object-lock-retain-until-date` headers. This takes precedence over any bucket object lock configuration w.r.t retention.
    
    ```sh
    aws s3api put-object --bucket testbucket --key lockme --object-lock-mode GOVERNANCE --object-lock-retain-until-date "2019-11-20"  --body /etc/issue
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates.go

    	nameToCertificate := map[string]*tls.Certificate{}
    	byNameExplicit := map[string]*tls.Certificate{}
    
    	// Iterate backwards so that earlier certs take precedence in the names map
    	for i := len(sniCerts) - 1; i >= 0; i-- {
    		cert, err := tls.X509KeyPair(sniCerts[i].cert, sniCerts[i].key)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. src/net/http/doc.go

    a newer version of Go's http2 package, import "golang.org/x/net/http2"
    directly and use its ConfigureTransport and/or ConfigureServer
    functions. Manually configuring HTTP/2 via the golang.org/x/net/http2
    package takes precedence over the net/http package's built-in HTTP/2
    support.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top