Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for testhost (0.14 sec)

  1. pilot/pkg/model/push_context_test.go

    			serviceNs:   "test1",
    			host:        testhost,
    			wantSubsets: []string{"subset1", "subset2"},
    		},
    		{
    			proxyNs:     "test1",
    			serviceNs:   "test2",
    			host:        testhost,
    			wantSubsets: []string{"subset1", "subset2"},
    		},
    		{
    			proxyNs:     "test2",
    			serviceNs:   "test1",
    			host:        testhost,
    			wantSubsets: []string{"subset3", "subset4"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    				}
    				typ := inst.Inst.Type
    
    				testInst := test.instances[ii]
    				if got := inst.Name.Value; got != testInst.name {
    					t.Fatalf("got name %s, want %s", got, testInst.name)
    				}
    
    				if len(targs) != len(testInst.targs) {
    					t.Fatalf("got %d type arguments; want %d", len(targs), len(testInst.targs))
    				}
    				for i, targ := range targs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    				typ := inst.Inst.Type
    
    				testInst := test.instances[ii]
    				if got := inst.Ident.Name; got != testInst.name {
    					t.Fatalf("got name %s, want %s", got, testInst.name)
    				}
    				if len(targs) != len(testInst.targs) {
    					t.Fatalf("got %d type arguments; want %d", len(targs), len(testInst.targs))
    				}
    				for i, targ := range targs {
    					if got := targ.String(); got != testInst.targs[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    // can be found. Called by translateRule to determine if
    func GetDestinationCluster(destination *networking.Destination, service *model.Service, listenerPort int) string {
    	if len(destination.GetHost()) == 0 {
    		// only happens when the gateway-api BackendRef is invalid
    		return "UnknownService"
    	}
    	h := host.Name(destination.Host)
    	// If this is an Alias, point to the concrete service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    				assert.Equal(t, testPodSandboxID, podSandboxID, "pod sandbox id")
    				// The port should be valid if it reaches here.
    				testPort, err := strconv.ParseInt(test.port, 10, 32)
    				require.NoError(t, err, "parse port")
    				assert.Equal(t, int32(testPort), port, "port")
    
    				if test.clientData != "" {
    					fromClient := make([]byte, 32)
    					n, err := stream.Read(fromClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	testFailFast     bool                              // -failfast flag
    	testFuzz         string                            // -fuzz flag
    	testJSON         bool                              // -json flag
    	testList         string                            // -list flag
    	testO            string                            // -o flag
    	testOutputDir    outputdirFlag                     // -outputdir flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	t.testGetMimatchedNamespace(valid.DeepCopyObject())
    	if !t.clusterScope {
    		t.testGetDifferentNamespace(valid.DeepCopyObject())
    	}
    }
    
    // Test listing objects.
    func (t *Tester) TestList(valid runtime.Object, assignFn AssignFunc) {
    	t.testListNotFound(assignFn)
    	t.testListFound(valid.DeepCopyObject(), assignFn)
    	t.testListMatchLabels(valid.DeepCopyObject(), assignFn)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. src/math/all_test.go

    			t.Errorf("Cos(%g) = %g, want %g", vfcosSC[i], f, cosSC[i])
    		}
    	}
    }
    
    func TestCosh(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Cosh(vf[i]); !close(cosh[i], f) {
    			t.Errorf("Cosh(%g) = %g, want %g", vf[i], f, cosh[i])
    		}
    	}
    	for i := 0; i < len(vfcoshSC); i++ {
    		if f := Cosh(vfcoshSC[i]); !alike(coshSC[i], f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top