Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for Tables (0.25 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    (italic) Classes Enums Exceptions Errors Annotation Types Class/Interface Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions: Class inheritance diagram Direct Subclasses All Known Subinterfaces All Known Implementing Classes Class/interface declaration Class/interface description Nested Class Summary Field Summary Constructor Summary Method...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    			Subsets: []*networking.Subset{
    				{Name: "v1", Labels: map[string]string{"version": "v1"}},
    				{Name: "v2", Labels: map[string]string{"version": "v2"}},
    			},
    		}, valid: true},
    
    		{name: "simple destination rule with empty selector labels", in: &networking.DestinationRule{
    			Host: "reviews",
    			Subsets: []*networking.Subset{
    				{Name: "v1", Labels: map[string]string{"version": "v1"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			errs = AppendValidation(errs, fmt.Errorf("config namespace and gateway name cannot be empty"))
    		}
    
    		// namespace and name must be DNS labels
    		if !labels.IsDNS1123Label(parts[0]) {
    			errs = AppendValidation(errs, fmt.Errorf("invalid value for namespace: %q", parts[0]))
    		}
    
    		if !labels.IsDNS1123Label(parts[1]) && !gatewaySemantics {
    			errs = AppendValidation(errs, fmt.Errorf("invalid value for gateway name: %q", parts[1]))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	metaObj, err := meta.Accessor(obj)
    	if err != nil {
    		panic(err.Error())
    	}
    	labels := metaObj.GetLabels()
    	if labels == nil {
    		labels = map[string]string{}
    	}
    	labels["prepare_create"] = "true"
    	metaObj.SetLabels(labels)
    }
    
    func (t *testRESTStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    		existingNode     *v1.Node
    		isPatchingNeeded bool
    	}{
    		{
    			name:             "no labels",
    			existingNode:     &v1.Node{ObjectMeta: metav1.ObjectMeta{Labels: map[string]string{}}},
    			isPatchingNeeded: true,
    		},
    		{
    			name:             "wrong labels",
    			existingNode:     &v1.Node{ObjectMeta: metav1.ObjectMeta{Labels: map[string]string{v1.LabelOSStable: "dummyOS", v1.LabelArchStable: "dummyArch"}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			{
    				Name:   "subset-1",
    				Labels: map[string]string{"foo": "bar"},
    				TrafficPolicy: &networking.TrafficPolicy{
    					PortLevelSettings: []*networking.TrafficPolicy_PortTrafficPolicy{
    						{
    							Port: &networking.PortSelector{
    								Number: 8080,
    							},
    						},
    					},
    				},
    			},
    			{
    				Name:   "subset-2",
    				Labels: map[string]string{"foo": "bar"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal_test.go

    func TestConditionNoAmbiguousSelectorWhenNoSelectorOverlapBetweenHPAs(t *testing.T) {
    	hpaSelectors := selectors.NewBiMultimap()
    	hpaSelectors.PutSelector(selectors.Key{Name: "test-hpa-2", Namespace: testNamespace}, labels.SelectorFromSet(labels.Set{"cheddar": "cheese"}))
    
    	tc := testCase{
    		minReplicas:             2,
    		maxReplicas:             6,
    		specReplicas:            3,
    		statusReplicas:          3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    					},
    				},
    			},
    
    			options: printers.GenerateOptions{},
    			// Columns: Name, Containers, Images, Pod Labels
    			expected: []metav1.TableRow{{Cells: []interface{}{"pod-template-2", "fake-container1,fake-container2", "fake-image1,fake-image2", "<none>"}}},
    		},
    		// Test basic pod template with pod labels
    		{
    			podTemplate: api.PodTemplate{
    				ObjectMeta: metav1.ObjectMeta{Name: "pod-template-3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		t.Errorf("Waiting for Pod to get the finalizer removed: %v", err)
    	}
    
    }
    
    func checkJobCompletionLabel(t *testing.T, p *v1.PodTemplateSpec) {
    	t.Helper()
    	labels := p.GetLabels()
    	if labels == nil || labels[batch.JobCompletionIndexAnnotation] == "" {
    		t.Errorf("missing expected pod label %s", batch.JobCompletionIndexAnnotation)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "labels": {
              "additionalProperties": {
                "type": "string"
              },
              "description": "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
              "type": "object"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top