Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 123 for isUser (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "url is not https",
    			in:   "http://issuer-url",
    			want: `issuer.url: Invalid value: "http://issuer-url": URL scheme must be https`,
    		},
    		{
    			name: "url user info is not allowed",
    			in:   "https://user:pass@issuer-url",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	}
    
    	intermediatePool := NewCertPool()
    	var leaf *Certificate
    	for _, e := range d.Graph {
    		issuerCert, ok := certs[e.Issuer]
    		if !ok {
    			t.Fatalf("unknown issuer %s", e.Issuer)
    		}
    		issuerKey, ok := keys[e.Issuer]
    		if !ok {
    			t.Fatalf("unknown issuer %s", e.Issuer)
    		}
    
    		k, ok := keys[e.Subject]
    		if !ok {
    			var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	ARM64.HasASIMDHP = isSet(hwCap, hwcap_ASIMDHP)
    	ARM64.HasCPUID = isSet(hwCap, hwcap_CPUID)
    	ARM64.HasASIMDRDM = isSet(hwCap, hwcap_ASIMDRDM)
    	ARM64.HasJSCVT = isSet(hwCap, hwcap_JSCVT)
    	ARM64.HasFCMA = isSet(hwCap, hwcap_FCMA)
    	ARM64.HasLRCPC = isSet(hwCap, hwcap_LRCPC)
    	ARM64.HasDCPOP = isSet(hwCap, hwcap_DCPOP)
    	ARM64.HasSHA3 = isSet(hwCap, hwcap_SHA3)
    	ARM64.HasSM3 = isSet(hwCap, hwcap_SM3)
    	ARM64.HasSM4 = isSet(hwCap, hwcap_SM4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tests/common/jwt/jwt_token.go

    	// payload:
    	//{
    	//  "exp": 4837231657,
    	//  "iat": 1683631657,
    	//  "iss": "test-issuer******@****.***",
    	//  "sub": "sub-1",
    	//  "test-issuer******@****.***/nested": {
    	//    "key1": "valueC",
    	//    "nested-2": {
    	//      "key1": "valueC"
    	//    }
    	//  },
    	//  "test-issuer******@****.***/simple": "valueC"
    	//}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/options/authentication_test.go

    						"kind":"AuthenticationConfiguration",
    						"jwt":[{"issuer":{"url": "https://test-issuer"}}]}`)
    			},
    			expectErr: "",
    			expectedConfig: &apiserver.AuthenticationConfiguration{
    				JWT: []apiserver.JWTAuthenticator{
    					{
    						Issuer: apiserver.Issuer{URL: "https://test-issuer"},
    					},
    				},
    			},
    			expectedContentData: `{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	}
    	c.claims = replace(c.claims, &v)
    	c.openIDConfig = replace(c.openIDConfig, &v)
    	c.options.JWTAuthenticator.Issuer.URL = replace(c.options.JWTAuthenticator.Issuer.URL, &v)
    	c.options.JWTAuthenticator.Issuer.DiscoveryURL = replace(c.options.JWTAuthenticator.Issuer.DiscoveryURL, &v)
    	for claim, response := range c.claimToResponseMap {
    		c.claimToResponseMap[claim] = replace(response, &v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/requestauthn/waypoint-jwt.yaml.tmpl

    spec:
      targetRefs:
      - kind: Gateway
        group: gateway.networking.k8s.io
        name: waypoint
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/requestauthn/timeout.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "{{ .JWTServer.JwksURI }}?delay=500ms"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 23:24:31 UTC 2024
    - 370 bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_arm64_hwcap.go

    	// is not supported in user space on older linux kernels.
    	ARM64.HasAES = isSet(HWCap, hwcap_AES)
    	ARM64.HasPMULL = isSet(HWCap, hwcap_PMULL)
    	ARM64.HasSHA1 = isSet(HWCap, hwcap_SHA1)
    	ARM64.HasSHA2 = isSet(HWCap, hwcap_SHA2)
    	ARM64.HasCRC32 = isSet(HWCap, hwcap_CRC32)
    	ARM64.HasCPUID = isSet(HWCap, hwcap_CPUID)
    	ARM64.HasSHA512 = isSet(HWCap, hwcap_SHA512)
    
    	// The Samsung S9+ kernel reports support for atomics, but not all cores
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/jwt.yaml.tmpl

    metadata:
      name: default
    spec:
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "test-issuer******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    
    # The following policy enables authorization on workload:
    # - Allow request principal test-issuer******@****.***/sub-1 to access path /token1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top