Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for Credential (0.14 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    properties
    
    // property : 2014-05-22 Internet Naming Company LLC
    property
    
    // protection : 2015-04-23 XYZ.COM LLC
    protection
    
    // pru : 2015-07-30 Prudential Financial, Inc.
    pru
    
    // prudential : 2015-07-30 Prudential Financial, Inc.
    prudential
    
    // pub : 2013-12-12 Dog Beach, LLC
    pub
    
    // pwc : 2015-10-29 PricewaterhouseCoopers LLP
    pwc
    
    // qpon : 2013-11-14 dotQPON LLC
    qpon
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      local config_path='/etc/srv/kubernetes/kube-controller-manager/kubeconfig'
      params+=("--use-service-account-credentials")
      params+=("--cloud-provider=${CLOUD_PROVIDER_FLAG:-external}")
      params+=("--kubeconfig=${config_path}" "--authentication-kubeconfig=${config_path}" "--authorization-kubeconfig=${config_path}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	// but we do not have the information necessary to do TLS verification.
    	//
    	// This client must not be modified to include credentials, because it is
    	// critical that credentials not leak from the client to arbitrary hosts.
    	insecureContainerLifecycleHTTPClient := &http.Client{
    		Transport: &http.Transport{
    			TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	enc := json.NewEncoder(w)
    	if err := enc.Encode(madmin.NetperfResult{NodeResults: results}); err != nil {
    		return
    	}
    }
    
    func isAllowedRWAccess(r *http.Request, cred auth.Credentials, bucketName string) (rd, wr bool) {
    	owner := cred.AccessKey == globalActiveCred.AccessKey
    
    	// Set prefix value for "s3:prefix" policy conditionals.
    	r.Header.Set("prefix", "")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		return nil, fmt.Errorf("nil pod.spec.enableServiceLinks encountered, cannot construct envvars")
    	}
    
    	// If the pod originates from the kube-api, when we know that the kube-apiserver is responding and the kubelet's credentials are valid.
    	// Knowing this, it is reasonable to wait until the service lister has synchronized at least once before attempting to build
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestCors(c *check) {
    	expectedMap := http.Header{}
    	expectedMap.Set("Access-Control-Allow-Credentials", "true")
    	expectedMap.Set("Access-Control-Allow-Origin", "http://foobar.com")
    	expectedMap["Access-Control-Expose-Headers"] = []string{
    		"Date",
    		"Etag",
    		"Server",
    		"Connection",
    		"Accept-Ranges",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top