Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,713 for iterations (0.21 sec)

  1. src/go/doc/testdata/testing.2.golden

    	func (b *B) StopTimer()
    
    	// The results of a benchmark run. 
    	type BenchmarkResult struct {
    		N	int		// The number of iterations.
    		T	time.Duration	// The total time taken.
    		Bytes	int64		// Bytes processed in one iteration.
    	}
    
    	// Benchmark benchmarks a single function. Useful for creating ...
    	func Benchmark(f func(b *B)) BenchmarkResult
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/RunFor.groovy

        ScenarioType type()
    
        OperatingSystem[] operatingSystems()
    
        String[] testProjects() default []
    
        /**
         * Declare regular expressions matching the iteration name.
         * Defaults to an empty string, meaning this annotation applies to all iterations of the annotated feature.
         */
        String iterationMatcher() default "";
    
        String comment() default "";
    }
    
    enum ScenarioType {
        PER_COMMIT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/spock/Spock2FilteringIntegrationTest.groovy

                .assertTestPassed("$testMethod param=value2")
    
            where:
            testMethod << ["sub unrolled test", "super unrolled test", "super super unrolled test"]
        }
    
        def "can not filter specific iterations of unrolled tests"() {
            when:
            fails("test", "--tests", "SubClass.$testMethod")
    
            then:
            failureCauseContains("No tests found for given includes: [SubClass.$testMethod](--tests filter)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. src/crypto/rsa/boring_test.go

    	k, err := GenerateKey(rand.Reader, 2048)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Run test with GOGC=10, to make bug more likely.
    	// Without the KeepAlives, the loop usually dies after
    	// about 30 iterations.
    	defer debug.SetGCPercent(debug.SetGCPercent(10))
    	for n := 0; n < 200; n++ {
    		// Clear the underlying BoringCrypto object cache.
    		privCache.Clear()
    
    		// Race to create the underlying BoringCrypto object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 00:16:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/termlist.go

    	// one iteration.
    	for _, x := range xl {
    		if x != nil {
    			return false
    		}
    	}
    	return true
    }
    
    // isAll reports whether the termlist xl represents the set of all types.
    func (xl termlist) isAll() bool {
    	// If there's a 𝓤 term, the entire list is 𝓤.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:29:30 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. src/go/doc/testdata/testing.0.golden

    	func (b *B) StopTimer()
    
    	// The results of a benchmark run. 
    	type BenchmarkResult struct {
    		N	int		// The number of iterations.
    		T	time.Duration	// The total time taken.
    		Bytes	int64		// Bytes processed in one iteration.
    	}
    
    	// Benchmark benchmarks a single function. Useful for creating ...
    	func Benchmark(f func(b *B)) BenchmarkResult
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/cpu-profile.go

    	}
    }
    
    func cpuHogger(f func(x int) int, y *int, dur time.Duration) {
    	// We only need to get one 100 Hz clock tick, so we've got
    	// a large safety buffer.
    	// But do at least 500 iterations (which should take about 100ms),
    	// otherwise TestCPUProfileMultithreaded can fail if only one
    	// thread is scheduled during the testing period.
    	t0 := time.Now()
    	accum := *y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_test.go

    		}
    	}
    }
    
    func TestBitwiseContended8(t *testing.T) {
    	// Start with every bit in array set to 0.
    	a := make([]uint8, 16)
    
    	// Iterations to try.
    	N := 1 << 16
    	if testing.Short() {
    		N = 1 << 10
    	}
    
    	// Set and then clear every bit in the array bit-by-bit in different goroutines.
    	done := make(chan bool)
    	for i := 0; i < 8; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/go/types/termlist.go

    	// one iteration.
    	for _, x := range xl {
    		if x != nil {
    			return false
    		}
    	}
    	return true
    }
    
    // isAll reports whether the termlist xl represents the set of all types.
    func (xl termlist) isAll() bool {
    	// If there's a 𝓤 term, the entire list is 𝓤.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

      let summary = "Asynchronously execution of while op for tf_mlrt";
      let description = [{
        cond: The boolean to control whether the first iteration should be executed.
        arguments: The last $invariant_size elements are invariants between iterations.
        results: a list of futures.
        body_fn: input is [predicate_promise, arg0_future, arg0_promise, arg1_future, arg1_promise, ..., invariant_args] and has no returned results.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top