Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 288 for isUser (0.15 sec)

  1. 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)
  2. tests/integration/security/policy_attachment_only/testdata/requestauthn/gateway-jwt.yaml.tmpl

    spec:
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .To.ServiceName }}-gateway
      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: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/requestauthn/gateway-jwt.yaml.tmpl

    spec:
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .To.ServiceName }}-gateway
      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: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K 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. pkg/serviceaccount/jwt.go

    		found = true
    		break
    	}
    
    	if !found {
    		return nil, false, utilerrors.NewAggregate(errlist)
    	}
    
    	// sanity check issuer since we parsed it out before signature validation
    	if !j.issuers[public.Issuer] {
    		return nil, false, fmt.Errorf("token issuer %q is invalid", public.Issuer)
    	}
    
    	tokenAudiences := authenticator.Audiences(public.Audience)
    	if len(tokenAudiences) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/registry/core/serviceaccount/storage/storage.go

    		return nil, err
    	}
    
    	var trest *TokenREST
    	if issuer != nil && podStorage != nil && secretStorage != nil {
    		trest = &TokenREST{
    			svcaccts:             store,
    			pods:                 podStorage,
    			secrets:              secretStorage,
    			nodes:                nodeStorage,
    			issuer:               issuer,
    			auds:                 auds,
    			audsSet:              sets.NewString(auds...),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tests/integration/security/remote_jwks/testdata/requestauthn-no-se.yaml.tmpl

    ---
    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: request-authn
    spec:
      selector:
        matchLabels:
          app: {{ .dst }}
      jwtRules:
      - issuer: "test-issuer******@****.***"
        jwksUri: "http://example.com:8000/jwks"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 330 bytes
    - Viewed (0)
Back to top