Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BasicAuth (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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