Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0123 (0.15 sec)

  1. cni/pkg/nodeagent/pod_cache_test.go

    func TestPodsAppearsWithNilNetnsWhenEnsureIsUsed(t *testing.T) {
    	p := newPodNetnsCache(openNsTestOverride)
    
    	p.Ensure("123")
    
    	found := false
    	snap := p.ReadCurrentPodSnapshot()
    	for k, v := range snap {
    		if k == "123" && v == (WorkloadInfo{}) {
    			found = true
    		}
    	}
    	if !found {
    		t.Fatalf("expected pod 123 to be in the cache")
    	}
    }
    
    func TestUpsertPodCacheWithLiveNetns(t *testing.T) {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
      // targetRef is a reference to a Kubernetes object that represents this
      // endpoint.
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  3. istioctl/pkg/multicluster/remote_secret.go

    }
    
    func (o *RemoteSecretOptions) prepare(ctx cli.Context) error {
    	o.KubeOptions.prepare(ctx)
    
    	if o.ClusterName != "" {
    		if !labels.IsDNS1123Label(o.ClusterName) {
    			return fmt.Errorf("%v is not a valid DNS 1123 label", o.ClusterName)
    		}
    	}
    	return nil
    }
    
    type Warning error
    
    func createRemoteSecret(opt RemoteSecretOptions, client kube.CLIClient) (*v1.Secret, Warning, error) {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
Back to top