Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for svctest (0.2 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

                        }
                    }
                }
            """
            buildFile << """
                apply plugin: 'swift-library'
                apply plugin: 'xcode'
                apply plugin: 'xctest'
    
                dependencies {
                    testImplementation "org.test:greeter:latest.integration"
                }
            """
            test.writeToProject(testDirectory)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/echotest/run.go

    	oneClusterOneTest func(t framework.TestContext, from cluster.Cluster, to echo.Target)
    	ingressTest       func(t framework.TestContext, from ingress.Instance, to echo.Target)
    )
    
    // Run will generate and run one subtest to send traffic between each combination
    // of source instance to target deployment.
    //
    // For example, in a test named `a/to_b/from_cluster-0`,
    // `a` is the source deployment, `b` is the destination deployment and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/test2json.go

    		// subtests.
    		// If the indentation is greater than the number of current subtests
    		// then the output must have included extra indentation. We can't
    		// determine which subtest produced this output, so we default to the
    		// old behaviour of assuming the most recently run subtest produced it.
    		if indent > 0 && indent <= len(c.report) {
    			c.testName = c.report[indent-1].Test
    		}
    		c.output.write(origLine)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  4. docs/features/https.md

     [provider_installer]: https://developer.android.com/training/articles/security-gms-provider
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/x86/aenum.go

    	AVPSRLQ
    	AVPSRLVD
    	AVPSRLVQ
    	AVPSRLVW
    	AVPSRLW
    	AVPSUBB
    	AVPSUBD
    	AVPSUBQ
    	AVPSUBSB
    	AVPSUBSW
    	AVPSUBUSB
    	AVPSUBUSW
    	AVPSUBW
    	AVPTERNLOGD
    	AVPTERNLOGQ
    	AVPTEST
    	AVPTESTMB
    	AVPTESTMD
    	AVPTESTMQ
    	AVPTESTMW
    	AVPTESTNMB
    	AVPTESTNMD
    	AVPTESTNMQ
    	AVPTESTNMW
    	AVPUNPCKHBW
    	AVPUNPCKHDQ
    	AVPUNPCKHQDQ
    	AVPUNPCKHWD
    	AVPUNPCKLBW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top