Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for BAR (0.14 sec)

  1. pkg/controller/job/job_controller_test.go

    		Spec: batch.JobSpec{
    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"foo": "bar"},
    			},
    			Template: v1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"foo": "bar",
    					},
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Image: "foo/bar"},
    					},
    				},
    			},
    		},
    	}
    	if completionMode != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    
    # Entries added by HostAliases.
    123.45.67.89	foo	bar	baz
    `,
    		},
    		{
    			hostsFileName: "hosts_test_file2_with_host_aliases",
    			hostAliases: []v1.HostAlias{
    				{IP: "123.45.67.89", Hostnames: []string{"foo", "bar", "baz"}},
    				{IP: "456.78.90.123", Hostnames: []string{"park", "doo", "boo"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    func TestMatchIP(t *testing.T) {
    	// Check that pattern matching is working.
    	c := &Certificate{
    		DNSNames: []string{"*.foo.bar.baz"},
    		Subject: pkix.Name{
    			CommonName: "*.foo.bar.baz",
    		},
    	}
    	err := c.VerifyHostname("quux.foo.bar.baz")
    	if err != nil {
    		t.Fatalf("VerifyHostname(quux.foo.bar.baz): %v", err)
    	}
    
    	// But check that if we change it to be matching against an IP address,
    	// it is rejected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation_test.go

    	// when the new selector is changed but still matches the existing labels.
    	newSelector := getValidGeneratedSelector()
    	newSelector.MatchLabels["foo"] = "bar"
    	validTolerations := []api.Toleration{{
    		Key:      "foo",
    		Operator: api.TolerationOpEqual,
    		Value:    "bar",
    		Effect:   api.TaintEffectPreferNoSchedule,
    	}}
    	cases := map[string]struct {
    		old    batch.Job
    		update func(*batch.Job)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // made up of a keyword followed by arguments. For example:
    //
    //	go 1.18
    //
    //	use ../foo/bar
    //	use ./baz
    //
    //	replace example.com/foo v1.2.3 => example.com/bar v1.4.5
    //
    // The leading keyword can be factored out of adjacent lines to create a block,
    // like in Go imports.
    //
    //	use (
    //	  ../foo/bar
    //	  ./baz
    //	)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(recordedRequest1.sequenceNumber).isEqualTo(0)
        val request2 = Request.Builder().url(server.url("/bar")).build()
        val response2 = client.newCall(request2).execute()
        assertThat(response2.body.string()).isEqualTo("ABC")
        val recordedRequest2 = server.takeRequest()
        assertThat(recordedRequest2.requestLine).isEqualTo("GET /bar HTTP/1.1")
        assertThat(recordedRequest2.sequenceNumber).isEqualTo(1)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    		makeTestService("somewhere-else", "external-name", func(svc *v1.Service) {
    			svc.Spec.Type = v1.ServiceTypeExternalName
    			svc.Spec.ClusterIP = "172.16.55.4" // Should be ignored
    			svc.Spec.ExternalName = "foo2.bar.com"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blah", "UDP", 1235, 5321, 0)
    		}),
    	)
    
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertThat(call).contains("prompt=Bar")
        assertThat(call).contains("protocol=http")
        assertThat(call.lowercase(Locale.US))
          .contains("scheme=basic") // lowercase for the RI.
      }
    
      @Test
      fun allAttributesSetInProxyAuthenticationCallbacks() {
        val calls = authCallsForHeader("Proxy-Authenticate: Basic realm=\"Bar\"")
        assertThat(calls.size).isEqualTo(1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    	// We use conflicted pod ports to incur fit predicate failure if first pod not removed.
    	secondPod := podWithPort("bar", "", 8080)
    	queuedPodStore.Add(secondPod)
    	scheduler.ScheduleOne(ctx)
    	select {
    	case b := <-bindingChan:
    		expectBinding := &v1.Binding{
    			ObjectMeta: metav1.ObjectMeta{Name: "bar", UID: types.UID("bar")},
    			Target:     v1.ObjectReference{Kind: "Node", Name: node.Name},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

        - {{ .dstSvc }}
      http:
      - corsPolicy:
          allowOrigins:
          - exact: cors.com
          allowMethods:
          - POST
          - GET
          allowCredentials: false
          allowHeaders:
          - X-Foo-Bar
          - X-Foo-Baz
          maxAge: "24h"
        route:
        - destination:
            host: {{ .dstSvc }}
    `,
    		children: []TrafficCall{
    			{
    				name: "preflight",
    				opts: func() echo.CallOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top