Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for authenticating (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/volume/csi/csi_mounter_test.go

    	"fmt"
    	"math/rand"
    	"os"
    	"path/filepath"
    	"reflect"
    	goruntime "runtime"
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/stretchr/testify/assert"
    	authenticationv1 "k8s.io/api/authentication/v1"
    	corev1 "k8s.io/api/core/v1"
    	storage "k8s.io/api/storage/v1"
    	meta "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. pkg/kubelet/server/server_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/httpstream"
    	"k8s.io/apimachinery/pkg/util/httpstream/spdy"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/tools/remotecommand"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. .bazelrc

    build:ios     --define=with_xla_support=false
    
    # BEGIN TF REMOTE BUILD EXECUTION OPTIONS
    # Options when using remote execution
    # WARNING: THESE OPTIONS WONT WORK IF YOU DO NOT HAVE PROPER AUTHENTICATION AND PERMISSIONS
    
    # Allow creation of resultstore URLs for any bazel invocation
    build:resultstore --google_default_credentials
    build:resultstore --bes_backend=buildeventservice.googleapis.com
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    # ${kube_env} keys that can be omitted for nodes that do not use an
    # authentication plugin:
    #   KUBELET_CERT
    #   KUBELET_KEY
    function Create-NodePki {
      Log-Output 'Creating node pki files'
    
      if ($kube_env.ContainsKey('CA_CERT')) {
        $CA_CERT_BUNDLE = ${kube_env}['CA_CERT']
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    		key := serviceAccountKey{
    			hostname:  svc.Hostname,
    			namespace: svc.Attributes.Namespace,
    		}
    		ps.serviceAccounts[key] = sa
    	}
    }
    
    // Caches list of authentication policies
    func (ps *PushContext) initAuthnPolicies(env *Environment) {
    	ps.AuthnPolicies = initAuthenticationPolicies(env)
    }
    
    // Caches list of virtual services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top