Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for authenticating (0.23 sec)

  1. docs/changelogs/changelog_3x.md

     *  **Proxy authenticators are now asked for preemptive authentication.** OkHttp will now request
        authentication credentials before creating TLS tunnels through HTTP proxies (HTTP `CONNECT`).
        Authenticators should identify preemptive authentications by the presence of a challenge whose
        scheme is "OkHttp-Preemptive".
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	//
    	// If WrapSession returns an error, the connection is terminated.
    	//
    	// Warning: the return value will be exposed on the wire and to clients in
    	// plaintext. The application is in charge of encrypting and authenticating
    	// it (and rotating keys) or returning high-entropy identifiers. Failing to
    	// do so correctly can compromise current, previous, and future connections
    	// depending on the protocol version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				FileCheckFrequency: metav1.Duration{Duration: 20 * time.Second},
    				HTTPCheckFrequency: metav1.Duration{Duration: 20 * time.Second},
    				Address:            "0.0.0.0",
    				Port:               ports.KubeletPort,
    				Authentication: v1beta1.KubeletAuthentication{
    					Anonymous: v1beta1.KubeletAnonymousAuthentication{Enabled: utilpointer.Bool(false)},
    					Webhook: v1beta1.KubeletWebhookAuthentication{
    						Enabled:  utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    	"k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	api "k8s.io/apiserver/pkg/apis/apiserver"
    	authenticationcel "k8s.io/apiserver/pkg/authentication/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	certutil "k8s.io/client-go/util/cert"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    	proto.RegisterType((*TokenRequestStatus)(nil), "k8s.io.api.authentication.v1.TokenRequestStatus")
    	proto.RegisterType((*TokenReview)(nil), "k8s.io.api.authentication.v1.TokenReview")
    	proto.RegisterType((*TokenReviewSpec)(nil), "k8s.io.api.authentication.v1.TokenReviewSpec")
    	proto.RegisterType((*TokenReviewStatus)(nil), "k8s.io.api.authentication.v1.TokenReviewStatus")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    sasl_username    (string)    username for SASL/PLAIN or SASL/SCRAM authentication
    sasl_password    (string)    password for SASL/PLAIN or SASL/SCRAM authentication
    sasl_mechanism   (string)    sasl authentication mechanism, default 'PLAIN'
    tls_client_auth  (string)    clientAuth determines the Kafka server's policy for TLS client auth
    sasl             (on|off)    set to 'on' to enable SASL authentication
    tls              (on|off)    set to 'on' to enable TLS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    EOF
        fi
    
        if [[ "$LIMITED_SWAP" == "true" ]]; then
            cat <<EOF >> "${TMP_DIR}"/kubelet.yaml
    memorySwap:
      swapBehavior: LimitedSwap
    EOF
        fi
    
        {
          # authentication
          echo "authentication:"
          echo "  webhook:"
          if [[ "${KUBELET_AUTHENTICATION_WEBHOOK:-}" != "false" ]]; then
            echo "    enabled: true"
          else
            echo "    enabled: false"
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.RotateCertificates = in.RotateCertificates
    	out.ServerTLSBootstrap = in.ServerTLSBootstrap
    	if err := Convert_v1beta1_KubeletAuthentication_To_config_KubeletAuthentication(&in.Authentication, &out.Authentication, s); err != nil {
    		return err
    	}
    	if err := Convert_v1beta1_KubeletAuthorization_To_config_KubeletAuthorization(&in.Authorization, &out.Authorization, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		},
    		CertFile: kc.TLSCertFile,
    		KeyFile:  kc.TLSPrivateKeyFile,
    	}
    
    	if len(kc.Authentication.X509.ClientCAFile) > 0 {
    		clientCAs, err := certutil.NewPool(kc.Authentication.X509.ClientCAFile)
    		if err != nil {
    			return nil, fmt.Errorf("unable to load client CA file %s: %w", kc.Authentication.X509.ClientCAFile, err)
    		}
    		// Specify allowed CAs for client certificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/net/http/request.go

    // 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)
    }
    
    // parseBasicAuth parses an HTTP Basic Authentication string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top