Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 121 for svctest (0.17 sec)

  1. src/testing/testing.go

    			// called tb.Helper from inside that test function).
    			// If this is a top-level test, only skip up to the test function itself.
    			// If we're in a subtest, continue searching in the parent test,
    			// starting from the point of the call to Run which created this subtest.
    			if c.level > 1 {
    				frames = runtime.CallersFrames(c.creator)
    				parent := c.parent
    				// We're no longer looking at the current c after this point,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. istioctl/pkg/describe/describe.go

    	svcHost := extendFQDN(fmt.Sprintf("%s.%s", svc.ObjectMeta.Name, svc.ObjectMeta.Namespace))
    	facts := []string{}
    	mismatchNotes := []string{}
    	match := false
    	for _, dest := range route.Route {
    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    				Inject: true,
    			})
    			cases := []struct {
    				name string
    				// namespace, labels, and annotations for the echo instance
    				pcAnnotation string
    				// service, echo service to use for this subtest
    				service string
    				// proxyconfig resources to apply
    				configs []proxyConfigInstance
    				// expected environment variables post-injection
    				expected map[string]string
    			}{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. pkg/test/framework/test.go

    	}
    
    	if t.s.skipped {
    		t.goTest.Skip("Skipped because parent Suite was skipped.")
    		return
    	}
    
    	if t.parent != nil {
    		// Create a new subtest under the parent's test.
    		parentGoTest := t.parent.goTest
    		parentCtx := t.parent.ctx
    		parentGoTest.Run(t.name, func(goTest *testing.T) {
    			t.goTest = goTest
    			t.doRun(parentCtx.newChildContext(t), fn, parallel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest.*slow*"]       | "FooTest"                 | "slowUiTest"          | true
            ["FooTest.*slow*"]       | "FooTest"                 | "veryslowtest"        | true
            ["FooTest.*slow*"]       | "FooTest.SubTest"         | "slow"                | false
            ["FooTest.*slow*"]       | "FooTest"                 | "a slow test"         | true
            ["FooTest.*slow*"]       | "FooTest"                 | "aslow"               | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/operand_test.go

    func TestS390XOperandParser(t *testing.T) {
    	parser := newParser("s390x")
    	testOperandParser(t, parser, s390xOperandTests)
    }
    
    func TestFuncAddress(t *testing.T) {
    	type subtest struct {
    		arch  string
    		tests []operandTest
    	}
    	for _, sub := range []subtest{
    		{"amd64", amd64OperandTests},
    		{"386", x86OperandTests},
    		{"arm", armOperandTests},
    		{"arm64", arm64OperandTests},
    		{"ppc64", ppc64OperandTests},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    	// service
    	svcList := make([]*Service, 0, vsNum)
    	for i := 0; i < vsNum; i++ {
    		svcList = append(svcList, &Service{
    			Attributes: ServiceAttributes{Namespace: "default"},
    			Hostname:   host.Name("host-" + strconv.Itoa(i) + ".com"),
    		})
    	}
    	ps.ServiceIndex.public = svcList
    
    	hosts := make([]string, 0)
    	if matchAll {
    		// default/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/manager_test.go

    			assert.Equal(t, test.ExpectedPrepareCalls, draServerInfo.server.prepareResourceCalls.Load())
    
    			if test.wantErr {
    				assert.Error(t, err)
    				return // PrepareResources returned an error so stopping the subtest here
    			} else if test.wantResourceSkipped {
    				assert.NoError(t, err)
    				return // resource skipped so no need to continue
    			}
    
    			assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    // the problematic reference to be skipped.
    //
    //	import "testing"
    //
    //	func TestFoo(t *testing.T) {
    //		tests := []int{0, 1, 2}
    //		for i, test := range tests {
    //			t.Run("subtest", func(t *testing.T) {
    //				println(i, test) // OK
    //		 		t.Parallel()
    //				println(i, test) // Not OK
    //			})
    //		}
    //	}
    func parallelSubtest(info *types.Info, call *ast.CallExpr) []ast.Stmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/net/dial_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	c.Close()
    }
    
    func TestDialerDualStackFDLeak(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("%s does not have full support of socktest", runtime.GOOS)
    	case "windows":
    		t.Skipf("not implemented a way to cancel dial racers in TCP SYN-SENT state on %s", runtime.GOOS)
    	case "openbsd":
    		testenv.SkipFlaky(t, 15157)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top