Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,159 for iterations (0.17 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. src/cmd/compile/internal/ssa/rewrite.go

    			// As of Sep 2021, 90% of rewrites complete in 4 iterations or fewer
    			// and the maximum value encountered during make.bash is 12.
    			// Start checking for cycles. (This is too expensive to do routinely.)
    			// Note: we avoid this path for deadChange-only iterations, to fix #51639.
    			if states == nil {
    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1_test.go

    			test:    "Server is using insecure connection",
    			wantErr: true,
    		},
    	}
    	for _, tt := range tests {
    		// Use a closure so defer statements trigger between loop iterations.
    		func() {
    			service := new(mockV1Service)
    			service.statusCode = 200
    
    			server, err := NewV1TestServer(service, tt.serverCert, tt.serverKey, tt.serverCA)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  8. 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)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    _Decomposes TensorList operations into generic operations on tensors._
    
    This pass rewrites TensorList operations into generic and non-mutating
    operations on tensors. This results in operations that can be legalized to XLA.
    
    The list is converted to a single large tensor that includes all list elements,
    with a new first dimension for the list index. List update operations are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. 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)
Back to top