Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,163 for iterations (0.27 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            root {
                'common.gradle'('println "poke"')
            }
    
            when:
            def allCompileOperations = 0
            def iterations = 3
            def builder = root
            iterations.times { n ->
                createJarWithProperties("foo${n}.jar", [value: n])
                new File(root.baseDir, 'build.gradle').delete()
                builder {
                    'build.gradle'("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TopKSelector.java

          } else if (pivotNewIndex < k) {
            left = Math.max(pivotNewIndex, left + 1);
            minThresholdPosition = pivotNewIndex;
          } else {
            break;
          }
          iterations++;
          if (iterations >= maxIterations) {
            @SuppressWarnings("nullness") // safe because we pass sort() a range that contains real Ts
            T[] castBuffer = (T[]) buffer;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/s390x/ggen.go

    		p.Reg = int16(s390x.REGSP)
    		reg = s390x.REGRT1
    		off = 0
    	}
    
    	// Generate a loop of large clears.
    	if cnt > clearLoopCutoff {
    		ireg := int16(s390x.REGRT2) // register holds number of remaining loop iterations
    		p = pp.Append(p, s390x.AMOVD, obj.TYPE_CONST, 0, cnt/256, obj.TYPE_REG, ireg, 0)
    		p = pp.Append(p, s390x.ACLEAR, obj.TYPE_CONST, 0, 256, obj.TYPE_MEM, reg, off)
    		pl := p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    # a worker process terminates without communicating the crashing input back
    # to the coordinator.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    # Start fuzzing. The worker crashes after 100 iterations.
    # The fuzz function writes the crashing input to "want" before exiting.
    # The fuzzing engine reconstructs the crashing input and saves it to testdata.
    ! exists want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. src/runtime/mgclimit_test.go

    	}
    
    	l := NewGCCPULimiter(ticks, procs)
    
    	// Do the whole test twice to make sure state doesn't leak across.
    	var baseOverflow uint64 // Track total overflow across iterations.
    	for i := 0; i < 2; i++ {
    		t.Logf("Iteration %d", i+1)
    
    		if l.Capacity() != procs*CapacityPerProc {
    			t.Fatalf("unexpected capacity: %d", l.Capacity())
    		}
    		if l.Fill() != 0 {
    			t.Fatalf("expected empty bucket to start")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kubelet/config/config_test.go

    	seenSources := sets.New[string](TestSource)
    	var wg sync.WaitGroup
    	const iterations = 100
    	wg.Add(2)
    
    	go func() {
    		ctx, cancel := context.WithCancel(tCtx)
    		defer cancel()
    		defer wg.Done()
    		for i := 0; i < iterations; i++ {
    			config.Channel(ctx, strconv.Itoa(i))
    		}
    	}()
    	go func() {
    		defer wg.Done()
    		for i := 0; i < iterations; i++ {
    			config.SeenAllSources(seenSources)
    		}
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top