Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for BasicAuth (0.32 sec)

  1. cluster/common.sh

    }
    
    function load-or-gen-kube-basicauth() {
      if [[ -n "${KUBE_CONTEXT:-}" ]]; then
        get-kubeconfig-basicauth
      fi
    
      if [[ -z "${KUBE_USER:-}" || -z "${KUBE_PASSWORD:-}" ]]; then
        gen-kube-basicauth
      fi
    
      # Make sure they don't contain any funny characters.
      if ! [[ "${KUBE_USER}" =~ ^[-._@a-zA-Z0-9]+$ ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/net/http/request_test.go

    		username, password, ok := r.BasicAuth()
    		if ok != tt.ok || username != tt.username || password != tt.password {
    			t.Errorf("BasicAuth() = %#v, want %#v", getBasicAuthTest{username, password, ok},
    				getBasicAuthTest{tt.username, tt.password, tt.ok})
    		}
    	}
    	// Unauthenticated request.
    	r, _ := NewRequest("GET", "http://example.com/", nil)
    	username, password, ok := r.BasicAuth()
    	if ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/authenticator/config.go

    	var authenticators []authenticator.Request
    	var tokenAuthenticators []authenticator.Token
    	securityDefinitionsV2 := spec.SecurityDefinitions{}
    	securitySchemesV3 := spec3.SecuritySchemes{}
    
    	// front-proxy, BasicAuth methods, local first, then remote
    	// Add the front proxy authenticator if requested
    	if config.RequestHeaderConfig != nil {
    		requestHeaderAuthenticator := headerrequest.NewDynamicVerifyOptionsSecure(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/options/options_test.go

    		username, _, _ = req.BasicAuth()
    		if username == "" {
    			username = "none, tls"
    		}
    		w.WriteHeader(200)
    		w.Write([]byte(`ok`))
    	}))
    	defer server.Close()
    	// http server
    	insecureserver := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		username, _, _ = req.BasicAuth()
    		if username == "" {
    			username = "none, http"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  5. api/go1.4.txt

    # CL 93550043 math/big: implement Rat.Float32, Robert Griesemer <******@****.***>
    pkg math/big, method (*Rat) Float32() (float32, bool)
    
    # CL 76540043 net/http: add BasicAuth method to *http.Request, Kelsey Hightower <******@****.***>
    pkg net/http, method (*Request) BasicAuth() (string, string, bool)
    
    # CL 137940043 net/http: add Transport.DialTLS hook, Brad Fitzpatrick <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  6. src/net/http/client.go

    		username := u.Username()
    		password, _ := u.Password()
    		forkReq()
    		req.Header = cloneOrMakeHeader(ireq.Header)
    		req.Header.Set("Authorization", "Basic "+basicAuth(username, password))
    	}
    
    	if !deadline.IsZero() {
    		forkReq()
    	}
    	stopTimer, didTimeout := setRequestCancel(req, rt, deadline)
    
    	resp, err = rt.RoundTrip(req)
    	if err != nil {
    		stopTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    				expectedUsername := testCase.proxyAuth.Username()
    				expectedPassword, _ := testCase.proxyAuth.Password()
    				username, password, ok := (&http.Request{Header: http.Header{"Authorization": []string{proxyCalledWithAuthHeader}}}).BasicAuth()
    				if !ok {
    					t.Fatalf("invalid proxy auth header %s", proxyCalledWithAuthHeader)
    				}
    				if username != expectedUsername || password != expectedPassword {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

      # to generate a valid ABAC policy. If the username changes, should
      # the script fail? Should we generate a default username and password
      # if the section is missing in kubeconfig? Handle this better in 1.5.
      get-kubeconfig-basicauth
      get-kubeconfig-bearertoken
    
      detect-master
      parse-master-env
      upgrade-master-env
    
      # Delete the master instance. Note that the master-pd is created
      # with auto-delete=no, so it should not be deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top