Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 288 for isUser (0.1 sec)

  1. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default
      namespace: {{ .SystemNamespace.Name }}
    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"
    ---
    apiVersion: security.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

        }
    
        override fun isUsedAsExpression(expression: KtExpression): Boolean =
            isUsed(expression)
    
        /**
         * [isUsed] and [doesParentUseChild] are defined in mutual recursion,
         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/requestauthn/remote.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 }}"
        outputPayloadToHeader: "x-test-payload"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 338 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type JWTAuthenticator struct {
    	Issuer               Issuer
    	ClaimValidationRules []ClaimValidationRule
    	ClaimMappings        ClaimMappings
    	UserValidationRules  []UserValidationRule
    }
    
    // Issuer provides the configuration for an external provider's specific settings.
    type Issuer struct {
    	// url points to the issuer URL in a format https://url or https://url/path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. cmd/common-main.go

    	//nolint:gocritic
    	if !env.IsSet(config.EnvRootUser) && env.IsSet(config.EnvRootPassword) {
    		logger.Fatal(config.ErrMissingEnvCredentialRootUser(nil), "Unable to start MinIO")
    	} else if env.IsSet(config.EnvRootUser) && !env.IsSet(config.EnvRootPassword) {
    		logger.Fatal(config.ErrMissingEnvCredentialRootPassword(nil), "Unable to start MinIO")
    	} else if !env.IsSet(config.EnvRootUser) && !env.IsSet(config.EnvRootPassword) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. tests/common/jwt/jwt_token_test.go

    					},
    				},
    				"iss": "test-issuer******@****.***",
    				"sub": "sub-1",
    				"exp": 4757607896.0,
    			},
    		},
    		{
    			name:  "TokenIssuer1NestedClaims2",
    			token: TokenIssuer1WithNestedClaims2,
    			wantClaims: map[string]any{
    				"nested": map[string]any{
    					"key2": "valueC",
    					"nested-2": map[string]any{
    						"key2": "valueC",
    					},
    				},
    				"iss": "test-issuer******@****.***",
    				"sub": "sub-1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. tests/integration/security/remote_jwks/testdata/requestauthn-with-se-timeout.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?delay={{ .delay }}"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
        timeout: {{ .timeout }}
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 675 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    }
    
    // Issuer provides the configuration for an external provider's specific settings.
    type Issuer struct {
    	// url points to the issuer URL in a format https://url or https://url/path.
    	// This must match the "iss" claim in the presented JWT, and the issuer returned from discovery.
    	// Same value as the --oidc-issuer-url flag.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    	return p
    }
    
    func (p *countingPromise) Get() interface{} {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    	if !p.isSet {
    		p.waitingCount++
    		p.activeCounter.Add(-1)
    		p.cond.Wait()
    	}
    	return p.value
    }
    
    func (p *countingPromise) Set(value interface{}) bool {
    	if p.isSet {
    		return false
    	}
    	p.isSet = true
    	p.value = value
    	if p.waitingCount > 0 {
    		p.activeCounter.Add(p.waitingCount)
    		p.waitingCount = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/authentication_test.go

    								"app":     "httpbin",
    								"version": "v1",
    							},
    						},
    						JwtRules: []*securityBeta.JWTRule{
    							{
    								Issuer:  "issuer-with-jwks-uri",
    								JwksUri: "example.com",
    							},
    							{
    								Issuer: "issuer-with-jwks",
    								Jwks:   "deadbeef",
    							},
    						},
    					},
    				},
    				{
    					Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top