Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for fromParam (0.18 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ParamsMatchingConstructorSelector.java

                if (parameterTypes.length < params.length) {
                    continue;
                }
    
                int fromParam = 0;
                int toParam = 0;
                for (; fromParam < params.length; fromParam++) {
                    Object param = params[fromParam];
                    while (param != null && toParam < parameterTypes.length) {
                        Class<?> toType = parameterTypes[toParam];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. tests/integration/security/testdata/requestauthn/headers-params.yaml.tmpl

        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
        fromHeaders:
        - name: "x-jwt-token"
          prefix: "Value "
        - name: "auth-token"
          prefix: "Token "
        fromParams:
        - "token"
        - "secondary_token"
    ---
    # The following policy enables authorization on workload dst.
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 867 bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    			provider.FromHeaders = append(provider.FromHeaders, &envoy_jwt.JwtHeader{
    				Name:        location.Name,
    				ValuePrefix: location.Prefix,
    			})
    		}
    		provider.FromParams = jwtRule.FromParams
    		provider.FromCookies = jwtRule.FromCookies
    
    		authnLog.Debugf("JwksFetchMode is set to: %v", features.JwksFetchMode)
    
    		timeout := &durationpb.Duration{Seconds: 5}
    		if jwtRule.Timeout != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    			continue
    		}
    		if len(location.Name) == 0 {
    			errs = multierror.Append(errs, errors.New("location header name must be non-empty string"))
    		}
    	}
    
    	for _, location := range rule.FromParams {
    		if len(location) == 0 {
    			errs = multierror.Append(errs, errors.New("location query must be non-empty string"))
    		}
    	}
    
    	for _, location := range rule.FromCookies {
    		if len(location) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			in: &security_beta.RequestAuthentication{
    				JwtRules: []*security_beta.JWTRule{
    					{
    						Issuer:     "foo.com",
    						JwksUri:    "https://foo.com",
    						FromParams: []string{""},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name:       "good",
    			configName: constants.DefaultAuthenticationPolicyName,
    			in: &security_beta.RequestAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                type: string
                            required:
                            - name
                            type: object
                          type: array
                        fromParams:
                          description: List of query parameters from which JWT is expected.
                          items:
                            type: string
                          type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                type: string
                            required:
                            - name
                            type: object
                          type: array
                        fromParams:
                          description: List of query parameters from which JWT is expected.
                          items:
                            minLength: 1
                            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                type: string
                            required:
                            - name
                            type: object
                          type: array
                        fromParams:
                          description: List of query parameters from which JWT is expected.
                          items:
                            minLength: 1
                            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    locations from which JWT is expected. items: properties: name: description: The HTTP header name. type: string prefix: description: The prefix that should be stripped before decoding the token. type: string required: - name type: object type: array fromParams: description: List of query parameters from which JWT is expected. items: type: string type: array issuer: description: Identifies the issuer that issued the JWT. type: string jwks: description: JSON Web Key Set of public keys to validate signature...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top