Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for _foobar (1.21 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    				Host: "foo.default.svc.cluster.local",
    				Subsets: []*networking.Subset{
    					{
    						Name:   "foobar",
    						Labels: map[string]string{"foo": "bar"},
    					},
    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{
    				{
    					Name:                 "outbound|8080|foobar|foo.default.svc.cluster.local",
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    	// settings specified at the destination level
    	g.Expect(getTLSContext(t, xdstest.ExtractCluster("outbound|8080|foobar|foo.example.org", clusters))).To(BeNil())
    
    	expected := []string{
    		"outbound|8080||foo.example.org",
    		"outbound|9090||foo.example.org",
    		"outbound|9090|foobar|foo.example.org",
    	}
    	for _, e := range expected {
    		c := xdstest.ExtractCluster(e, clusters)
    		tlsContext := getTLSContext(t, c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    		want string
    	}{
    		// normal http
    		{"http://foobar.com/baz", "http://foobar.com/baz"},
    		// normal https
    		{"https://foobar.com/baz", "https://foobar.com/baz"},
    		// custom scheme
    		{"test://foobar.com/baz", "test://foobar.com/baz"},
    		// schemeless
    		{"//foobar.com/baz", "//foobar.com/baz"},
    		// relative to the root
    		{"/foobar.com/baz", "/foobar.com/baz"},
    		// relative to the current path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    	{"*.com.", "example.com.", false},
    	{"*.com.", "example.com", false},
    	{"*.com", "example.com", true},
    	{"*.com", "example.com.", true},
    	{"foo:bar", "foo:bar", true},
    	{"*.foo:bar", "xxx.foo:bar", false},
    	{"*.2.3.4", "1.2.3.4", false},
    	{"*.2.3.4", "[1.2.3.4]", false},
    	{"*:4860:4860::8888", "2001:4860:4860::8888", false},
    	{"*:4860:4860::8888", "[2001:4860:4860::8888]", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    	}
    	j.Spec.BackoffLimit = &backoffLimit
    
    	return j
    }
    
    func newJob(parallelism, completions, backoffLimit int32, completionMode batch.CompletionMode) *batch.Job {
    	return newJobWithName("foobar", parallelism, completions, backoffLimit, 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        then running this pass with 'default-device=foobar', we get:
    
        ```mlir
          %0 = "tf.Const"() {device = "foobar" value = dense<[[42.0]]> : tensor<1x1xf32>} : () -> tensor<1x1xf32>
          %1 = "tf.Const"() {device = "foobar", value = dense<[[42.0]]> : tensor<1x1xf32>} : () -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			schema:          &sts,
    			validFieldPath:  path.Child("a"),
    		},
    		{
    			name:            "Valid 'foo'bar",
    			fieldPath:       "['\\'foo\\'bar']",
    			pathOfFieldPath: path,
    			schema:          &sts,
    			validFieldPath:  path.Child("'foo'bar"),
    		},
    		{
    			name:            "Invalid 'foo'bar",
    			fieldPath:       ".\\'foo\\'bar",
    			pathOfFieldPath: path,
    			schema:          &sts,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestCors(c *check) {
    	expectedMap := http.Header{}
    	expectedMap.Set("Access-Control-Allow-Credentials", "true")
    	expectedMap.Set("Access-Control-Allow-Origin", "http://foobar.com")
    	expectedMap["Access-Control-Expose-Headers"] = []string{
    		"Date",
    		"Etag",
    		"Server",
    		"Connection",
    		"Accept-Ranges",
    		"Content-Range",
    		"Content-Encoding",
    		"Content-Length",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    func TestTransportReadToEndReusesConn(t *testing.T) { run(t, testTransportReadToEndReusesConn) }
    func testTransportReadToEndReusesConn(t *testing.T, mode testMode) {
    	const msg = "foobar"
    
    	var addrSeen map[string]int
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		addrSeen[r.RemoteAddr]++
    		if r.URL.Path == "/chunked/" {
    			w.WriteHeader(200)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top