Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for Patches (0.19 sec)

  1. pkg/security/security.go

    	TokenAudiences = strings.Split(env.Register("TOKEN_AUDIENCES", "istio-ca",
    		"A list of comma separated audiences to check in the JWT token before issuing a certificate. "+
    			"The token is accepted if it matches with one of the audiences").Get(), ",")
    )
    
    const (
    	BearerTokenPrefix = "Bearer "
    
    	K8sTokenPrefix = "Istio "
    
    	// CertSigner info
    	CertSigner = "CertSigner"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listenertest/match.go

    }
    
    type FilterChainTest struct {
    	// Match a filter chain by name
    	Name string
    	// Match filter chain by 'type'. This can be important since Name is currently not unique
    	Type FilterChainType
    	// Port the filter chain matches
    	Port uint32
    
    	NetworkFilters []string
    	HTTPFilters    []string
    
    	ValidateHCM func(t test.Failer, hcm *hcm.HttpConnectionManager)
    
    	TotalMatch bool
    }
    
    type FilterChainType string
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    		Namespace(c.ns).
    		Resource("examples").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		WatchList(ctx).
    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested examples.
    func (c *examples) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		WatchList(ctx).
    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested customResourceDefinitions.
    func (c *customResourceDefinitions) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. cmd/signature-v4_test.go

    		}
    
    		// Do the same for the headers.
    		for key, value := range testCase.headers {
    			req.Header.Set(key, value)
    		}
    
    		// parse form.
    		req.ParseForm()
    
    		// Check if it matches!
    		err := doesPresignedSignatureMatch(payloadSHA256, req, testCase.region, serviceS3)
    		if err != testCase.expected {
    			t.Errorf("(%d) expected to get %s, instead got %s", i, niceError(testCase.expected), niceError(err))
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		WatchList(ctx).
    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested customResourceDefinitions.
    func (c *customResourceDefinitions) Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    				if s.Tls != nil {
    					// Envoy will reject config that has multiple filter chain matches with the same matching rules.
    					// To avoid this, we need to make sure we don't have duplicated hosts, which will become
    					// SNI filter chain matches.
    
    					// When there is Bind specified in the Gateway, the listener is built per IP instead of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/certcontroller.go

    		return fmt.Errorf("set keyCertBundle failed: %v", err)
    	}
    	// TODO: Setup watcher for root and restart server if it changes.
    	for _, file := range []string{tlsOptions.CertFile, tlsOptions.KeyFile} {
    		log.Infof("adding watcher for certificate %s", file)
    		if err := s.fileWatcher.Add(file); err != nil {
    			return fmt.Errorf("could not watch %v: %v", file, err)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    type IAMStoreSys struct {
    	IAMStorageAPI
    
    	group *singleflight.Group
    }
    
    // HasWatcher - returns if the storage system has a watcher.
    func (store *IAMStoreSys) HasWatcher() bool {
    	_, ok := store.IAMStorageAPI.(iamStorageWatcher)
    	return ok
    }
    
    // GetUser - fetches credential from memory.
    func (store *IAMStoreSys) GetUser(user string) (UserIdentity, bool) {
    	cache := store.rlock()
    	defer store.runlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_inbound.go

    	// For each chain config we will build required filter chain(s)
    	for _, cc := range lb.buildInboundChainConfigs() {
    		// First, construct our set of filter chain matchers. For a given port, we will have multiple matches
    		// to handle mTLS vs plaintext and HTTP vs TCP (depending on protocol and PeerAuthentication).
    		var opts []FilterChainMatchOptions
    		mtls := lb.authnBuilder.ForPort(cc.port.TargetPort)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top