Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 233 for run1 (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    It explains:
    
     * Ways to control how the tests are run (<<#sec:test_execution,Test execution>>)
     * How to select specific tests to run (<<#test_filtering,Test filtering>>)
     * What test reports are generated and how to influence the process (<<#test_reporting,Test reporting>>)
     * How Gradle finds tests to run (<<#sec:test_detection,Test detection>>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	var args []string
    	arg := make([]rune, len(s))
    	escaped := false
    	quoted := false
    	quote := '\x00'
    	i := 0
    	for _, rune := range s {
    		switch {
    		case escaped:
    			escaped = false
    		case rune == '\\':
    			escaped = true
    			continue
    		case quote != '\x00':
    			if rune == quote {
    				quote = '\x00'
    				continue
    			}
    		case rune == '"' || rune == '\'':
    			quoted = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    					i+1, j, n, max)
    				t.Logf("counts %v", counts)
    				break
    			}
    		}
    	}
    
    	runs := 100
    	if testing.Short() {
    		runs = 5
    	}
    	for i := 0; i < runs; i++ {
    		// Run multiple times to shake out data races
    		t.Run("goroutine launches", testLaunches)
    	}
    }
    
    func BenchmarkGoroutine(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		return fmt.Sprintf("%v", padding)
    	}
    
    	article := "a"
    	if isVowel(rune(noun[0])) {
    		article = "an"
    	}
    
    	return fmt.Sprintf("%s%s%s", padding, article, padding)
    }
    
    // isVowel returns true if the rune is a vowel (case insensitive).
    func isVowel(c rune) bool {
    	vowels := []rune{'a', 'e', 'i', 'o', 'u'}
    	for _, value := range vowels {
    		if value == unicode.ToLower(c) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    }
    
    func TestReader(t *testing.T) {
    	var texts [31]string
    	str := ""
    	all := ""
    	for i := 0; i < len(texts)-1; i++ {
    		texts[i] = str + "\n"
    		all += texts[i]
    		str += string(rune(i%26 + 'a'))
    	}
    	texts[len(texts)-1] = all
    
    	for h := 0; h < len(texts); h++ {
    		text := texts[h]
    		for i := 0; i < len(readMakers); i++ {
    			for j := 0; j < len(bufreaders); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        test_case->ClearResult();
      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        test_case->ClearResult();
      }
    
      // Runs every test in this TestCase.
      void Run();
    
      // Runs SetUpTestCase() for this TestCase.  This wrapper is needed
      // for catching exceptions thrown from SetUpTestCase().
      void RunSetUpTestCase() { (*set_up_tc_)(); }
    
      // Runs TearDownTestCase() for this TestCase.  This wrapper is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	// Wake all blocked assists. These will run when we
    	// start the world again.
    	gcWakeAllAssists()
    
    	// Likewise, release the transition lock. Blocked
    	// workers and assists will run when we start the
    	// world again.
    	semrelease(&work.markDoneSema)
    
    	// In STW mode, re-enable user goroutines. These will be
    	// queued to run after we start the world.
    	schedEnableUser(true)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			pv := getTestPV(tc.pvName, tc.volumeMode, tc.oldPVSize)
    			pvc := getTestPVC("pv", tc.volumeMode, tc.pvcSize, tc.pvcStatusSize)
    			pod := getTestPod(pvc.Name)
    
    			// deep copy before reconciler runs to avoid data race.
    			pvWithSize := pv.DeepCopy()
    			node := &v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    // The bootstrap command runs a build from scratch,
    // stopping at having installed the go_bootstrap command.
    //
    // WARNING: This command runs after cmd/dist is built with the Go bootstrap toolchain.
    // It rebuilds and installs cmd/dist with the new toolchain, so other
    // commands (like "go tool dist test" in run.bash) can rely on bug fixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top