Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for foo20 (0.05 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, err)
    
    	containers := []v1.Container{
    		{
    			Name:            "foo1",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    		{
    			Name:            "foo2",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation_test.go

    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"company-com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// No topology keys
    		ObjectMeta: metav1.ObjectMeta{Name: "foo10"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:   driverName,
    				NodeID: nodeID,
    			}},
    		},
    	}}
    
    	for _, csiNode := range successCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    ${fooAndBarJars()}
                }
                project(':c') {
                    configurations {
                        foo.attributes { $freeDebug; attribute(extra, 'extra') }
                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  4. src/encoding/json/decode_test.go

    	Int64:      6,
    	Uint:       7,
    	Uint8:      8,
    	Uint16:     9,
    	Uint32:     10,
    	Uint64:     11,
    	Uintptr:    12,
    	Float32:    14.1,
    	Float64:    15.1,
    	Foo:        "foo",
    	Foo2:       "foo2",
    	IntStr:     42,
    	UintptrStr: 44,
    	String:     "16",
    	Map: map[string]Small{
    		"17": {Tag: "tag17"},
    		"18": {Tag: "tag18"},
    	},
    	MapP: map[string]*Small{
    		"19": {Tag: "tag19"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def parent = Mock(ParentServices)
            def registry = decoratorCreator.call(registry(parent))
    
            when:
            def result = registry.get(String)
    
            then:
            result == "Foo120"
    
            and:
            1 * parent.get(Long) >> 110L
            1 * parent.get(String) >> "Foo"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set_test.go

    					Spec: apps.ReplicaSetSpec{
    						Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    					},
    				},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo2", Namespace: "ns", Labels: map[string]string{"foo": "bar"}}},
    			outRSName: "",
    		},
    		// Matching ns and labels returns the key to the ReplicaSet, not the ReplicaSet name
    		{
    			inRSs: []*apps.ReplicaSet{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils_test.go

    		t.Errorf("Expected empty string found %s", pod)
    	}
    }
    
    func TestIsMemberOf(t *testing.T) {
    	set := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	pod := newStatefulSetPod(set, 1)
    	if !isMemberOf(set, pod) {
    		t.Error("isMemberOf returned false negative")
    	}
    	if isMemberOf(set2, pod) {
    		t.Error("isMemberOf returned false positive")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    				CreationTimestamp: newerTime,
    			},
    			Spec: &networking.VirtualService{
    				Hosts: []string{"foo.example.com"},
    			},
    		},
    		{
    			Meta: config.Meta{
    				Name:              "foo2",
    				Namespace:         "default",
    				CreationTimestamp: olderTime.Add(30 * time.Minute), // This should not be used despite being older than foo
    			},
    			Spec: &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top