Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for authn (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Component-base/logs: when compiled with Go >= 1.21, component-base will automatically configure the slog default logger together with initializing klog. ([#120696](https://github.com/kubernetes/kubernetes/pull/120696), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture, Auth, CLI, Cloud Provider, Cluster Lifecycle, Instrumentation, Network, Storage and Testing]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		if err != nil {
    			return fmt.Errorf("failed to initialize kubelet heartbeat client: %w", err)
    		}
    	}
    
    	if kubeDeps.Auth == nil {
    		auth, runAuthenticatorCAReload, err := BuildAuth(nodeName, kubeDeps.KubeClient, s.KubeletConfiguration)
    		if err != nil {
    			return err
    		}
    		kubeDeps.Auth = auth
    		runAuthenticatorCAReload(ctx.Done())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_messages.go

    			}
    		case extensionCertificateAuthorities:
    			var auths cryptobyte.String
    			if !extData.ReadUint16LengthPrefixed(&auths) || auths.Empty() {
    				return false
    			}
    			for !auths.Empty() {
    				var ca []byte
    				if !readUint16LengthPrefixed(&auths, &ca) || len(ca) == 0 {
    					return false
    				}
    				m.certificateAuthorities = append(m.certificateAuthorities, ca)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/net/http/request.go

    //
    //go:linkname parseBasicAuth
    func parseBasicAuth(auth string) (username, password string, ok bool) {
    	const prefix = "Basic "
    	// Case insensitive prefix match. See Issue 22736.
    	if len(auth) < len(prefix) || !ascii.EqualFold(auth[:len(prefix)], prefix) {
    		return "", "", false
    	}
    	c, err := base64.StdEncoding.DecodeString(auth[len(prefix):])
    	if err != nil {
    		return "", "", false
    	}
    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. src/main/java/jcifs/smb/SmbSessionImpl.java

    import java.util.Objects;
    import java.util.Set;
    import java.util.concurrent.atomic.AtomicBoolean;
    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.concurrent.atomic.AtomicLong;
    
    import javax.security.auth.Subject;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

    function DownloadAndInstall-AuthProviderGcpBinary {
      if ("${env:ENABLE_AUTH_PROVIDER_GCP}" -eq "true") {
        $filename = 'auth-provider-gcp.exe'
        if (ShouldWrite-File ${env:AUTH_PROVIDER_GCP_WINDOWS_BIN_DIR}\$filename) {
          Log-Output "Installing auth provider gcp binaries"
          $tmp_dir = 'C:\k8s_tmp'
          New-Item -Force -ItemType 'directory' $tmp_dir | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "auth",
    						Headers: map[string]*networking.StringMatch{
    							"@request.auth.claims.Foo": {
    								MatchType: &networking.StringMatch_Exact{
    									Exact: "Bar",
    								},
    							},
    						},
    						WithoutHeaders: map[string]*networking.StringMatch{
    							"@request.auth.claims.Bla": {
    								MatchType: &networking.StringMatch_Exact{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    	case errAuthentication:
    		apiErr = ErrAccessDenied
    	case auth.ErrContainsReservedChars:
    		apiErr = ErrAdminInvalidAccessKey
    	case auth.ErrInvalidAccessKeyLength:
    		apiErr = ErrAdminInvalidAccessKey
    	case auth.ErrInvalidSecretKeyLength:
    		apiErr = ErrAdminInvalidSecretKey
    	case auth.ErrNoAccessKeyWithSecretKey:
    		apiErr = ErrAdminNoAccessKey
    	case auth.ErrNoSecretKeyWithAccessKey:
    		apiErr = ErrAdminNoSecretKey
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    }
    
    func TestInboundSidecarTLSModes(t *testing.T) {
    	peerAuthConfig := func(m string) string {
    		return fmt.Sprintf(`apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: peer-auth
      namespace: default
    spec:
      selector:
        matchLabels:
          app: foo
      mtls:
        mode: STRICT
      portLevelMtls:
        9080:
          mode: %s
    ---
    `, m)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar_test.go

    			{kind.AuthorizationPolicy, "authz", "default"}: true,
    		}},
    		{"AuthorizationPolicy in a different ns from workload", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.AuthorizationPolicy, "authz", "ns1"}: false,
    		}},
    		{"AuthorizationPolicy in the root namespace", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.AuthorizationPolicy, "authz", constants.IstioSystemNamespace}: true,
    		}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top