Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,472 for iterations (0.19 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	// Store counters
    	MOVO D0, ctr0Store; MOVO D1, ctr1Store; MOVO D2, ctr2Store; MOVO D3, ctr3Store
    
    	// There are 10 ChaCha20 iterations of 2QR each, so for 6 iterations we hash 2 blocks, and for the remaining 4 only 1 block - for a total of 16
    	MOVQ $4, itr1
    	MOVQ inp, itr2
    
    openSSEInternalLoop:
    	MOVO          C3, tmpStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. 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)
  3. src/net/timeout_test.go

    	// tests that automatically increase timeouts until success.
    	//
    	// Lower values may allow tests to succeed more quickly if the value is close
    	// to the true minimum, but may require more iterations (and waste more time
    	// and CPU power on failed attempts) if the timeout is too low.
    	minDynamicTimeout = 1 * time.Millisecond
    
    	// maxDynamicTimeout is the maximum timeout to attempt for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	"testing"
    	"time"
    	_ "unsafe"
    )
    
    func cpuHogger(f func(x int) int, y *int, dur time.Duration) {
    	// We only need to get one 100 Hz clock tick, so we've got
    	// a large safety buffer.
    	// But do at least 500 iterations (which should take about 100ms),
    	// otherwise TestCPUProfileMultithreaded can fail if only one
    	// thread is scheduled during the testing period.
    	t0 := time.Now()
    	accum := *y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Iterators.java

       * Returns an iterator over the merged contents of all given {@code iterators}, traversing every
       * element of the input iterators. Equivalent entries will not be de-duplicated.
       *
       * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this
       * method does not sort its input.
       *
       * <p>For any equivalent elements across all {@code iterators}, it is undefined which element is
       * returned first.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterators.java

       * Returns an iterator over the merged contents of all given {@code iterators}, traversing every
       * element of the input iterators. Equivalent entries will not be de-duplicated.
       *
       * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this
       * method does not sort its input.
       *
       * <p>For any equivalent elements across all {@code iterators}, it is undefined which element is
       * returned first.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/go/doc/comment/parse.go

    	spanPara
    )
    
    func parseSpans(lines []string) []span {
    	var spans []span
    
    	// The loop may process a line twice: once as unindented
    	// and again forced indented. So the maximum expected
    	// number of iterations is 2*len(lines). The repeating logic
    	// can be subtle, though, and to protect against introduction
    	// of infinite loops in future changes, we watch to see that
    	// we are not looping too much. A panic is better than a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/internal/modload/load.go

    // and all requested packages are in "all", then loading completes in a single
    // iteration.
    // TODO(bcmills): We should also be able to load in a single iteration if the
    // requested packages all come from modules that are themselves tidy, regardless
    // of whether those packages are in "all". Today, that requires two iterations
    // if those packages are not found in existing dependencies of the main module.
    
    import (
    	"context"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Operations.groovy

     *  instant.doStuff == operation.doStuff.end
     * </pre>
     */
    class Operations {
        private final InstantFactory instantFactory
        private final Object lock = new Object()
        private final Map<String, NamedOperation> operations = [:]
        private final OperationListener listener
    
        Operations(InstantFactory instantFactory, OperationListener listener) {
            this.listener = listener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top