Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for authorizationv1 (0.38 sec)

  1. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1beta1_KubeletAuthorization_To_config_KubeletAuthorization(&in.Authorization, &out.Authorization, s); err != nil {
    		return err
    	}
    	if err := v1.Convert_Pointer_int32_To_int32(&in.RegistryPullQPS, &out.RegistryPullQPS, s); err != nil {
    		return err
    	}
    	out.RegistryBurst = in.RegistryBurst
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2beta1.json

                  ]
                }
              ],
              "version": "v1alpha1"
            }
          ]
        },
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "authorization.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "localsubjectaccessreviews",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(response.body.string()).isEqualTo("Successful auth!")
        val denied = server.takeRequest()
        assertThat(denied.headers["Authorization"]).isNull()
        val accepted = server.takeRequest()
        assertThat(accepted.requestLine).isEqualTo("GET / HTTP/1.1")
        assertThat(accepted.headers["Authorization"]).isEqualTo(credential)
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun redirect(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/net/http/request.go

    		}
    	}
    
    	return req, nil
    }
    
    // BasicAuth returns the username and password provided in the request's
    // Authorization header, if the request uses HTTP Basic Authentication.
    // See RFC 2617, Section 2.
    func (r *Request) BasicAuth() (username, password string, ok bool) {
    	auth := r.Header.Get("Authorization")
    	if auth == "" {
    		return "", "", false
    	}
    	return parseBasicAuth(auth)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		apiErr.Description = fmt.Sprintf("%s (%s)", apiErr.Description, err)
    	}
    	if region := globalSite.Region(); region != "" {
    		if errCode == ErrAuthorizationHeaderMalformed {
    			apiErr.Description = fmt.Sprintf("The authorization header is malformed; the region is wrong; expecting '%s'.", region)
    			return apiErr
    		}
    	}
    	return apiErr
    }
    
    func (e errorCodeMap) ToAPIErr(errCode APIErrorCode) APIError {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.3.md

    [kubernetes.tar.gz](https://storage.googleapis.com/kubernetes-release/release/v1.3.0/kubernetes.tar.gz) | `88249c443d438666928379aa7fe865b389ed72ea` | `9270f001aef8c03ff5db63456ca9eecc`
    
    ## Highlights
    
    * Authorization:
      * **Alpha** RBAC authorization API group
    * Federation
      * federation api group is now **beta**
      * Services from all federated clusters are now registered in Cloud DNS (AWS and GCP).
    * Stateful Apps:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	})
    	// No event since workload policy should still be there (both workloads' policy references remain the same).
    	// Since PeerAuthentications are translated into DENY policies we can safely apply them
    	// alongside ALLOW authorization policies
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{"ns1/selector", fmt.Sprintf("ns1/%s", model.GetAmbientPolicyConfigName(model.ConfigKey{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	// "http" is assumed.
    	// "socks5" is treated the same as "socks5h".
    	//
    	// If the proxy URL contains a userinfo subcomponent,
    	// the proxy request will pass the username and password
    	// in a Proxy-Authorization header.
    	//
    	// If Proxy is nil or returns a nil *URL, no proxy is used.
    	Proxy func(*Request) (*url.URL, error)
    
    	// OnProxyConnectResponse is called when the Transport gets an HTTP response from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	//'variables' - Map of composited variables, from its name to its lazily evaluated value.
    	//  For example, a variable named 'foo' can be accessed as 'variables.foo'
    	// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
    	//   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
      // 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
      //   See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top