Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,099 for iterations (0.21 sec)

  1. CONTRIBUTING.md

    > and you can rely on it after doing initial sanity check and targeted local testing.
    
    ### Submitting Your Change
    
    After you submit your pull request, a Gradle developer will review it. It is normal for this to take several iterations, so don't get discouraged by change requests. They ensure the high quality that we all enjoy.
    
    If you need to check on [CI](http://builds.gradle.org/) status as an external contributor, you can click "Log in as guest".
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    func TestKubeOpenapiRejectionFiltering(t *testing.T) {
    	// 1000 iterations runs for ~2 seconds with race detection enabled
    	for i := 0; i < 1000; i++ {
    		f := fuzz.New()
    		seed := time.Now().UnixNano()
    		randSource := rand.New(rand.NewSource(seed))
    		f.RandSource(randSource)
    		t.Logf("iteration %d with seed %d", i, seed)
    
    		fuzzFuncs(f, func(ref *spec.Ref, c fuzz.Continue, visible bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    Each test suite has some configuration that is common across for all tests contained in the suite:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/BloomFilterTest.java

      public void testExpectedFpp() {
        BloomFilter<Object> bf = BloomFilter.create(HashTestUtils.BAD_FUNNEL, 10, 0.03);
        double fpp = bf.expectedFpp();
        assertEquals(0.0, fpp);
        // usually completed in less than 200 iterations
        while (fpp != 1.0) {
          boolean changed = bf.put(new Object());
          double newFpp = bf.expectedFpp();
          // if changed, the new fpp is strictly higher, otherwise it is the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    		rand.NewSource(rand.Int63()),
    		codecFactory,
    	)
    	RoundTripTypes(t, scheme, codecFactory, fuzzer, nil)
    }
    
    var FuzzIters = flag.Int("fuzz-iters", defaultFuzzIters, "How many fuzzing iterations to do.")
    
    // globalNonRoundTrippableTypes are kinds that are effectively reserved across all GroupVersions
    // They don't roundtrip
    var globalNonRoundTrippableTypes = sets.NewString(
    	"ExportOptions",
    	"GetOptions",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/async_while.mlir

      return %1#4, %1#3 : tensor<3x3xf32>, tensor<*xf32>
    }
    
    // -----
    // This case test the re-ordering of the while body function to maximize pipelining between iterations.
    
    // CHECK-LABEL: func.func private @"sort_map/while_cond"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. src/math/big/nat_test.go

    		t.Fatalf("incorrect quotient: %s", s)
    	}
    }
    
    // TestIssue42552 triggers an edge case of recursive division
    // where the first division loop is never entered, and correcting
    // the remainder takes exactly two iterations in the final loop.
    func TestIssue42552(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/generate.go

    	// ScalarMult, but in this case the doublings are precomputed. The value
    	// [windowValue]G added at iteration k would normally get doubled
    	// (totIterations-k)×4 times, but with a larger precomputation we can
    	// instead add [2^((totIterations-k)×4)][windowValue]G and avoid the
    	// doublings between iterations.
    	t := New{{.P}}Point()
    	p.Set(New{{.P}}Point())
    	tableIndex := len(tables) - 1
    	for _, byte := range scalar {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/phi.go

    	for len(priq.a) > 0 {
    		currentRoot := heap.Pop(priq).(*ssa.Block)
    		if debugPhi {
    			fmt.Printf("currentRoot %s\n", currentRoot)
    		}
    		// Walk subtree below definition.
    		// Skip subtrees we've done in previous iterations.
    		// Find edges exiting tree dominated by definition (the dominance frontier).
    		// Insert phis at target blocks.
    		if queued.contains(currentRoot.ID) {
    			s.s.Fatalf("root already in queue")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  10. tensorflow/c/kernels_experimental.cc

      ~TmpVar() override { VLOG(3) << "TmpVar " << name << " deleted"; }
    };
    
    // Makes a unique name for a temporary variable inside a while loop body,
    // because loop can be executed in multiple iterations in parallel.
    std::string TemporaryVariableName(
        const std::string& var_name,
        const tensorflow::FrameAndIter& control_frame) {
      if (control_frame.frame_id != tensorflow::kIllegalFrameId &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top