Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for Blah (0.05 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    	labelset := Set{
    		"foo": "bar",
    		"baz": "blah",
    	}
    	expectMatch(t, "foo=bar", labelset)
    	expectMatch(t, "baz=blah", labelset)
    	expectMatch(t, "foo=bar,baz=blah", labelset)
    	expectNoMatch(t, "foo=blah", labelset)
    	expectNoMatch(t, "baz=bar", labelset)
    	expectNoMatch(t, "foo=bar,foobar=bar,baz=blah", labelset)
    }
    
    func expectMatchDirect(t *testing.T, selector, ls Set) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  2. src/mime/mediatype_test.go

    		{`;foo="bar"; `, "foo", "bar", "; "},
    		{`;foo="bar"; foo=baz`, "foo", "bar", "; foo=baz"},
    		{` ; boundary=----CUT;`, "boundary", "----CUT", ";"},
    		{` ; key=value;  blah="value";name="foo" `, "key", "value", `;  blah="value";name="foo" `},
    		{`;  blah="value";name="foo" `, "blah", "value", `;name="foo" `},
    		{`;name="foo" `, "name", "foo", ` `},
    	}
    	for _, test := range tests {
    		param, value, rest := consumeMediaParam(test[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

                    variant('api') {
                        capability('org', 'foo', '1.0')
                        capability('org', 'blah', '1.0')
                    }
                    variant('runtime') {
                        capability('org', 'foo', '1.0')
                        capability('org', 'blah', '1.0')
                    }
                }
                'org:bar:1.0' {
                    variant('api') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "cool.dk",
              "cool.co.uk",
              "cool.de",
              "cool.es",
              "cool\uFF61fr", // Alternate dot character
              "cool.nl",
              "members.blah.nl.",
              "cool.se",
              "utenti.blah.it",
              "kt.co",
              "a\u7f51\u7edcA.\u7f51\u7edc.Cn" // "a网络A.网络.Cn"
              );
    
      private static final ImmutableSet<String> SOMEWHERE_UNDER_RS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. pkg/kubelet/config/config_test.go

    	channel, ch, _ := createPodConfigTester(tCtx, PodConfigNotificationIncremental)
    
    	pod := CreateValidPod("foo2", "new")
    	pod.Annotations = make(map[string]string)
    	pod.Annotations["kubernetes.io/blah"] = "blah"
    
    	clone := pod.DeepCopy()
    
    	podUpdate := CreatePodUpdate(kubetypes.SET, TestSource, CreateValidPod("foo1", "new"), clone, CreateValidPod("foo3", "new"))
    	channel <- podUpdate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. pkg/util/iptables/testing/fake_test.go

    		*mangle
    		COMMIT
    		`, "\n"))
    	if buf.String() != expected {
    		t.Fatalf("bad initial dump. expected:\n%s\n\ngot:\n%s\n", expected, buf.Bytes())
    	}
    
    	// EnsureChain
    	existed, err := fake.EnsureChain(iptables.Table("blah"), iptables.Chain("KUBE-TEST"))
    	if err == nil {
    		t.Errorf("did not get expected error creating chain in non-existent table")
    	} else if existed {
    		t.Errorf("wrong return value from EnsureChain with non-existent table")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    	if n.GroupVersionKind() != gvk1 {
    		t.Errorf("unexpected gvk of input object: %v", n.GroupVersionKind())
    	}
    }
    
    func TestDecode(t *testing.T) {
    	gvk1 := &schema.GroupVersionKind{Kind: "Test", Group: "other", Version: "blah"}
    	decodable1 := &testDecodable{}
    	decodable2 := &testDecodable{}
    	decodable3 := &testDecodable{}
    
    	testCases := []struct {
    		serializer runtime.Serializer
    		convertor  runtime.ObjectConvertor
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    						"nvidia.com/gpu":  resource.MustParse("3"),
    					},
    				},
    			},
    		},
    		NodeName: "node1",
    	}
    	labels1 := map[string]string{
    		"foo": "bar",
    		"baz": "blah",
    	}
    	labels2 := map[string]string{
    		"bar": "foo",
    		"baz": "blah",
    	}
    	cpuOnly := v1.PodSpec{
    		NodeName: "node1",
    		Containers: []v1.Container{
    			{
    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    	}
    
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	src := filepath.Join(tmpdir, "blah.go")
    	err := os.WriteFile(src, []byte(Issue34788src), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	obj := filepath.Join(tmpdir, "blah.o")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p=blah", "-o", obj, src)
    	cmd.Env = append(os.Environ(), "GOARCH=386", "GOOS=android")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/net/http/httputil/dump_test.go

    			strings.Repeat("a", 8193),
    	},
    
    	{
    		GetReq: func() *http.Request {
    			return mustReadRequest("GET http://foo.com/ HTTP/1.1\r\n" +
    				"User-Agent: blah\r\n\r\n")
    		},
    		NoBody: true,
    		WantDump: "GET http://foo.com/ HTTP/1.1\r\n" +
    			"User-Agent: blah\r\n\r\n",
    	},
    
    	// Issue #7215. DumpRequest should return the "Content-Length" when set
    	{
    		GetReq: func() *http.Request {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top