Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 729 for iterations (0.25 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

      context:
        cluster: foobar
        user: a name
    current-context: default
    `,
    			wantErr: true,
    		},
    	}
    
    	for _, tt := range tests {
    		// Use a closure so defer statements trigger between loop iterations.
    		err := func() error {
    			tempfile, err := ioutil.TempFile("", "")
    			if err != nil {
    				return err
    			}
    			p := tempfile.Name()
    			defer utiltesting.CloseAndRemove(t, tempfile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. src/text/template/doc.go

    	{{break}}
    		The innermost {{range pipeline}} loop is ended early, stopping the
    		current iteration and bypassing all remaining iterations.
    
    	{{continue}}
    		The current iteration of the innermost {{range pipeline}} loop is
    		stopped, and the loop starts the next iteration.
    
    	{{template "name"}}
    		The template with the specified name is executed with nil data.
    
    	{{template "name" pipeline}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256.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 := NewP256Point()
    	p.Set(NewP256Point())
    	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
    - 17.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/map_test.go

    			first = append(first, i)
    		}
    
    		// 800 chances to get a different iteration order.
    		// See bug 8736 for why we need so many tries.
    		for n := 0; n < 800; n++ {
    			idx := 0
    			for i := range m {
    				if i != first[idx] {
    					// iteration order changed.
    					continue NextRound
    				}
    				idx++
    			}
    		}
    		t.Fatalf("constant iteration order on round %d: %v", round, first)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    	done <- struct{}{}
    	go func() {
    		for i := 0; i < 2; i++ {
    			_, open := <-ch
    			if !open {
    				return
    			}
    		}
    		t.Error("expected closed channel after two iterations")
    	}()
    	<-complete
    
    	if len(errc) != 0 {
    		t.Fatal(<-errc)
    	}
    }
    
    func Test_waitFor(t *testing.T) {
    	var invocations int
    	testCases := map[string]struct {
    		F       ConditionFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top