Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for test32 (0.19 sec)

  1. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

    fun BuildType.applyPerformanceTestSettings(os: Os = Os.LINUX, arch: Arch = Arch.AMD64, timeout: Int = 30) {
        applyDefaultSettings(os = os, arch = arch, timeout = timeout)
        artifactRules = """
            build/report-*-performance-tests.zip => .
            build/report-*-performance.zip => $hiddenArtifactDestination
            build/report-*PerformanceTest.zip => $hiddenArtifactDestination
        """.trimIndent()
        detectHangingBuilds = false
        requirements {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. hack/verify-test-featuregates.sh

    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    # find test files accessing the mutable global feature gate or interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/util/sets/set_test.go

    }
    
    func TestEquals(t *testing.T) {
    	tests := []struct {
    		name   string
    		first  Set[string]
    		second Set[string]
    		want   bool
    	}{
    		{
    			"both nil",
    			nil,
    			nil,
    			true,
    		},
    		{
    			"unequal length",
    			New("test"),
    			New("test", "test1"),
    			false,
    		},
    		{
    			"equal sets",
    			New("test", "test1"),
    			New("test", "test1"),
    			true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/groovy/gradle/test-libs.versions.toml

    Octavia Togami <******@****.***> 1709090774 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-toml/kotlin/gradle/test-libs.versions.toml

    Octavia Togami <******@****.***> 1709090774 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 03:39:11 UTC 2024
    - 549 bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

            group = "verification"
            description = "Runs the cross-version tests against all Gradle versions with 'forking' executer"
        }
    
        val quickFeedbackCrossVersionTests = tasks.register("quickFeedbackCrossVersionTests") {
            group = "verification"
            description = "Runs the cross-version tests against a subset of selected Gradle versions with 'forking' executer for quick feedback"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/test2json/main.go

    //	cont   - the test has continued running
    //	pass   - the test passed
    //	bench  - the benchmark printed log output but did not fail
    //	fail   - the test or benchmark failed
    //	output - the test printed output
    //	skip   - the test was skipped or the package contained no tests
    //
    // Every JSON stream begins with a "start" event.
    //
    // The Package field, if present, specifies the package being tested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pkg/test/framework/integration/framework_test.go

    		branchFactor: branchFactor,
    		runParallel:  runParallel,
    	})
    }
    
    func (ls levels) Build() *test {
    	// Create the root test, which will always be run synchronously.
    	root := &test{
    		name: ls[0].name + "[sync]",
    	}
    
    	testsInPrevLevel := []*test{root}
    	var testsInCurrentLevel []*test
    	for _, l := range ls[1:] {
    		for _, parent := range testsInPrevLevel {
    			parent.runChildrenParallel = l.runParallel
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/path/filepath/match_test.go

    		if err := test.globAbs(tmpDir, p); err != nil {
    			t.Error(err)
    		}
    	}
    
    	// test relative paths
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = os.Chdir(tmpDir)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer func() {
    		err := os.Chdir(wd)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}()
    	for _, test := range tests {
    		err := test.globRel("")
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-task-across-generations.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 767 bytes
    - Viewed (0)
Back to top