Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 175 for foo6 (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/labels_test.go

    			want:   labels,
    		},
    		{
    			labels:     labels,
    			labelKey:   "foo4",
    			labelValue: "89",
    			want: map[string]string{
    				"foo1": "bar1",
    				"foo2": "bar2",
    				"foo3": "bar3",
    				"foo4": "89",
    			},
    		},
    		{
    			labels:     nil,
    			labelKey:   "foo4",
    			labelValue: "12",
    			want: map[string]string{
    				"foo4": "12",
    			},
    		},
    	}
    
    	for _, tc := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 11:09:05 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  2. test/escape2.go

    }
    
    type MV int
    
    func (MV) M() {}
    
    func foo65() {
    	var mv MV
    	foo63(&mv)
    }
    
    func foo66() {
    	var mv MV // ERROR "moved to heap: mv$"
    	foo64(&mv)
    }
    
    func foo67() {
    	var mv MV
    	foo63(mv) // ERROR "mv does not escape$"
    }
    
    func foo68() {
    	var mv MV
    	// escapes but it's an int so irrelevant
    	foo64(mv) // ERROR "mv escapes to heap$"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. pkg/adsc/adsc_test.go

    				constructResource("foo1", "foo1.bar.com", "192.1.1.11", "2"),
    				constructResource("foo2", "foo2.bar.com", "192.1.1.22", "1"),
    				constructResource("foo3", "foo3.bar.com", "192.1.1.3", ""),
    			},
    			expectedResources: [][]string{
    				{"foo1", "foo1.bar.com", "192.1.1.11"},
    				{"foo2", "foo2.bar.com", "192.1.1.2"},
    				{"foo3", "foo3.bar.com", "192.1.1.3"},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    	expectResourceDeviceInstances(t, resp, expected)
    
    	cond = map[string]sets.Set[string]{
    		"foo": sets.New[string]("dev-foo1", "dev-foo2", "dev-foo3", "dev-foo4"),
    		"bar": sets.New[string]("dev-bar1", "dev-bar2", "dev-bar3", "dev-bar4"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. pkg/kubelet/util/queue/work_queue_test.go

    	}
    }
    
    func TestGetWork(t *testing.T) {
    	q, clock := newTestBasicWorkQueue()
    	q.Enqueue(types.UID("foo1"), -1*time.Minute)
    	q.Enqueue(types.UID("foo2"), -1*time.Minute)
    	q.Enqueue(types.UID("foo3"), 1*time.Minute)
    	q.Enqueue(types.UID("foo4"), 1*time.Minute)
    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "foo6"},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: "InvalidValue", Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo6", "Unknown", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo7"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/kubelet/config/config_test.go

    	// should register an add
    	podUpdate := CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new"), CreateValidPod("foo2", "new"), CreateValidPod("foo3", "new"))
    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new"), CreateValidPod("foo2", "new"), CreateValidPod("foo3", "new")))
    
    	// should ignore ADDs that are identical
    	expectNoPodUpdate(t, ch)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationFromMemberScope/subsitutionOverride.txt

    fun <S> foo1(t: Int): Int fromClass Y
      S from /Y.foo1
      t: Int from /Y.foo1
    
    fun <Q> foo2(t: Int) fromClass Y
      Q from /Y.foo2
      t: Int from /Y.foo2
    
    fun <U> foo3() fromClass X
      U from /X.foo3
    
    fun equals(other: Any?): Boolean fromClass kotlin/Any
      other: Any? from kotlin/Any.equals
    
    fun hashCode(): Int fromClass kotlin/Any
    
    fun toString(): String fromClass kotlin/Any
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Nov 22 17:25:30 UTC 2022
    - 400 bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/env_test.go

    				{
    					EnvVar: v1.EnvVar{Name: "Foo1", Value: "Bar1"},
    				},
    				{
    					EnvVar: v1.EnvVar{Name: "Foo2", Value: "Bar2"},
    				},
    			},
    			extraEnv: []kubeadmapi.EnvVar{
    				{
    					EnvVar: v1.EnvVar{Name: "Foo3", Value: "Bar3"},
    				},
    			},
    			mergedEnv: []v1.EnvVar{
    				{Name: "Foo1", Value: "Bar1"},
    				{Name: "Foo2", Value: "Bar2"},
    				{Name: "Foo3", Value: "Bar3"},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 09:09:19 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/strings/replace_test.go

    		testCase{gen3, "", ""},
    	)
    
    	// foo{1,2,3,4} have multiple old strings with an overall common prefix
    	// and 1- or 2- byte extensions from the common prefix.
    	foo1 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo3", "C",
    	)
    	foo2 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo3 := NewReplacer(
    		"foo11", "A",
    		"foo12", "B",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
Back to top