Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for scopeName (0.26 sec)

  1. istioctl/pkg/admin/istiodconfig.go

    	ch := make(chan struct {
    		err       error
    		scopeName string
    	}, len(scopes))
    	var wg sync.WaitGroup
    	for _, scope := range scopes {
    		wg.Add(1)
    		go func(si *ScopeInfo) {
    			defer wg.Done()
    			err := c.PutScope(si)
    			ch <- struct {
    				err       error
    				scopeName string
    			}{err: err, scopeName: si.Name}
    		}(scope)
    	}
    	wg.Wait()
    	close(ch)
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

    // that relates the scope name and values.
    message ScopedResourceSelectorRequirement {
      // The name of the scope that the selector applies to.
      optional string scopeName = 1;
    
      // Represents a scope's relationship to a set of values.
      // Valid operators are In, NotIn, Exists, DoesNotExist.
      optional string operator = 2;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top