Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,147 for iterations (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/eager/c_api_test.cc

        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_Execute(matmul, &retvals[0], &num_retvals, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        if (state.iterations() >= state.max_iterations && async) {
          TFE_Executor* executor = TFE_ContextGetExecutorForThread(ctx);
          TFE_ExecutorWaitForAllPendingNodes(executor, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top