Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for qselect (0.18 sec)

  1. cni/pkg/install/install_test.go

    			ticker := time.NewTicker(500 * time.Millisecond)
    			defer ticker.Stop()
    			readyChan := make(chan bool)
    			go func(ctx context.Context, tick <-chan time.Time) {
    				for {
    					select {
    					case <-ctx.Done():
    						return
    					case <-tick:
    						if isReady.Load().(bool) {
    							readyChan <- true
    						}
    					}
    				}
    			}(ctx, ticker.C)
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  2. cni/pkg/config/config.go

    	// init container termination message and exit code.
    	SidecarAnnotation  string
    	InitContainerName  string
    	InitTerminationMsg string
    	InitExitCode       int
    
    	// Label and field selectors to select pods managed by race repair.
    	LabelSelectors string
    	FieldSelectors string
    }
    
    func (c InstallConfig) String() string {
    	var b strings.Builder
    	b.WriteString("CNINetDir: " + c.CNINetDir + "\n")
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  3. istioctl/pkg/proxystatus/proxystatus_test.go

    			args:           strings.Split("--revision canary", " "),
    			expectedString: "NAME     CLUSTER     CDS     LDS     EDS     RDS     ECDS     ISTIOD",
    			revision:       "canary",
    		},
    		{ // case 7: supplying type that doesn't select pods should fail
    			args:          strings.Split("serviceaccount/sleep", " "),
    			wantException: true,
    		},
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      //     "kubernetes.io/kubelet-serving".
      //  3. Otherwise, it is assigned "kubernetes.io/legacy-unknown".
      // Distribution of trust for signers happens out of band.
      // You can select on this field using `spec.signerName`.
      // +optional
      optional string signerName = 7;
    
      // expirationSeconds is the requested duration of validity of the issued
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
    
        # Configure the mesh networks to be used by the Split Horizon EDS.
        #
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                    description: Determines ordering of `WasmPlugins` in the same `phase`.
                    nullable: true
                    type: integer
                  selector:
                    description: Criteria used to select the specific set of pods/VMs
                      on which this plugin configuration should be applied.
                    properties:
                      matchLabels:
                        additionalProperties:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    	ret := make(chan updateResponse, 1)
    	req := updateRequest{
    		Update: data,
    		Fd:     fd,
    		Resp:   ret,
    	}
    	select {
    	case z.Updates <- req:
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    
    	select {
    	case r := <-ret:
    		return r.resp, r.err
    	case <-ctx.Done():
    		return nil, ctx.Err()
    	}
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool optional = 2;
    }
    
    // Selects a key from a ConfigMap.
    // +structType=atomic
    message ConfigMapKeySelector {
      // The ConfigMap to select from.
      optional LocalObjectReference localObjectReference = 1;
    
      // The key to select.
      optional string key = 2;
    
      // Specify whether the ConfigMap or its key must be defined
      // +optional
      optional bool optional = 3;
    }
    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)
  9. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // ClusterCIDRSpec defines the desired state of ClusterCIDR.
    message ClusterCIDRSpec {
      // nodeSelector defines which nodes the config is applicable to.
      // An empty or nil nodeSelector selects all nodes.
      // This field is immutable.
      // +optional
      optional k8s.io.api.core.v1.NodeSelector nodeSelector = 1;
    
      // perNodeHostBits defines the number of host bits to be configured per node.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

                      IPAddressPools have the same priority, choice will be random.
                    properties:
                      namespaceSelectors:
                        description: NamespaceSelectors list of label selectors to select
                          namespace(s) for ip pool, an alternative to using namespace
                          list.
                        items:
                          description: A label selector is a label query over a set of
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
Back to top