Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for zeroed (0.17 sec)

  1. pilot/pkg/networking/core/listener.go

    	merged := make([]*filterChainOpts, 0, len(current.chains)+len(incoming))
    	// Start with the current listener's filter chains.
    	merged = append(merged, current.chains...)
    
    	for _, incoming := range incoming {
    		conflict := false
    
    		for _, existing := range merged {
    			conflict = existing.conflictsWith(incoming)
    
    			if conflict {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                    type: integer
                type: object
              status:
                description: BFDProfileStatus defines the observed state of BFDProfile.
                type: object
            type: object
        served: true
        storage: true
        subresources:
          status: {}
    ---
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		}
    
    		jsonSchema, err := json.Marshal(v.Schema.OpenAPIV3Schema)
    		if err != nil {
    			return err
    		}
    
    		merged, err := jsonpatch.MergePatch(jsonSchema, patchJSON)
    		if err != nil {
    			return err
    		}
    
    		var parsed apiextensionsv1.JSONSchemaProps
    		if err := json.Unmarshal(merged, &parsed); err != nil {
    			return err
    		}
    
    		return updateMyCRDV1Beta1Schema{
    			newSchema: &parsed,
    		}.Do(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("merged-plugin-exec-goals-order/wo-plugin-mgmt/sub");
    
            assertEquals(5, ((List<?>) pom.getValue("build/plugins[1]/executions[1]/goals")).size());
            assertEquals("child-a", pom.getValue("build/plugins[1]/executions[1]/goals[1]"));
            assertEquals("merged", pom.getValue("build/plugins[1]/executions[1]/goals[2]"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    
    	_, err = cacher.Watch(context.TODO(), "pod/ns", storage.ListOptions{
    		ResourceVersion: "",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			got := tt.left.CopyMerge(tt.right)
    			if !reflect.DeepEqual(&tt.merged, got) {
    				t.Fatalf("expected %v, got %v", &tt.merged, got)
    			}
    			got = tt.left.Merge(tt.right)
    			if !reflect.DeepEqual(&tt.merged, got) {
    				t.Fatalf("expected %v, got %v", &tt.merged, got)
    			}
    		})
    	}
    }
    
    func TestConcurrentMerge(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Served = in.Served
    	out.Storage = in.Storage
    	out.Deprecated = in.Deprecated
    	out.DeprecationWarning = (*string)(unsafe.Pointer(in.DeprecationWarning))
    	if in.Schema != nil {
    		in, out := &in.Schema, &out.Schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Served = in.Served
    	out.Storage = in.Storage
    	out.Deprecated = in.Deprecated
    	out.DeprecationWarning = (*string)(unsafe.Pointer(in.DeprecationWarning))
    	if in.Schema != nil {
    		in, out := &in.Schema, &out.Schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/sidecar_test.go

    				{
    					Hostname: "bar",
    				},
    				{
    					Hostname: "barprime",
    				},
    			},
    			nil,
    		},
    		{
    			"sidecar-with-zero-egress",
    			configs2,
    			nil,
    			nil,
    			nil,
    			nil,
    		},
    		{
    			"sidecar-with-zero-egress-multiple-service",
    			configs2,
    			services4,
    			nil,
    			[]*Service{
    				{
    					Hostname: "bar",
    				},
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	SupportedSignatureAlgorithms []SignatureScheme
    	// OCSPStaple contains an optional OCSP response which will be served
    	// to clients that request it.
    	OCSPStaple []byte
    	// SignedCertificateTimestamps contains an optional list of Signed
    	// Certificate Timestamps which will be served to clients that request it.
    	SignedCertificateTimestamps [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top