Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,472 for iterations (0.29 sec)

  1. src/os/exec/exec_test.go

    		go runCommand(cb, bres)
    		if got, want := <-ares, fmt.Sprintf("fd3: listener %s\n", la.Addr()); got != want {
    			t.Errorf("iteration %d, process A got:\n%s\nwant:\n%s\n", i, got, want)
    		}
    		if got, want := <-bres, fmt.Sprintf("fd3: listener %s\n", lb.Addr()); got != want {
    			t.Errorf("iteration %d, process B got:\n%s\nwant:\n%s\n", i, got, want)
    		}
    		la.Close()
    		lb.Close()
    		for _, f := range ca.ExtraFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    	// Walk blocks in postorder ordering. This improves convergence.
    	po := lv.f.Postorder()
    
    	// Iterate through the blocks in reverse round-robin fashion. A work
    	// queue might be slightly faster. As is, the number of iterations is
    	// so low that it hardly seems to be worth the complexity.
    
    	for change := true; change; {
    		change = false
    		for _, b := range po {
    			be := lv.blockEffects(b)
    
    			newliveout.Clear()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    //	-fuzztime t
    //	    Run enough iterations of the fuzz target during fuzzing to take t,
    //	    specified as a time.Duration (for example, -fuzztime 1h30s).
    //		The default is to run forever.
    //	    The special syntax Nx means to run the fuzz target N times
    //	    (for example, -fuzztime 1000x).
    //
    //	-fuzzminimizetime t
    //	    Run enough iterations of the fuzz target during each minimization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * read operations anyway:
         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	// because it is too big for some compilers.
    	for _, op := range ops {
    		rules := oprules[op]
    		_, ok := parseEllipsisRules(oprules[op], arch)
    		if ok {
    			continue
    		}
    
    		// rr is kept between iterations, so that each rule can check
    		// that the previous rule wasn't unconditional.
    		var rr *RuleRewrite
    		fn := &Func{
    			Kind:   "Value",
    			Suffix: fmt.Sprintf("_%s", op),
    			ArgLen: opByName(arch, op).argLength,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    		p = p[overage:]
    		w.skipped += int64(overage)
    	}
    	p = w.fill(&w.suffix, p)
    
    	// w.suffix is full now if p is non-empty. Overwrite it in a circle.
    	for len(p) > 0 { // 0, 1, or 2 iterations.
    		n := copy(w.suffix[w.suffixOff:], p)
    		p = p[n:]
    		w.skipped += int64(n)
    		w.suffixOff += n
    		if w.suffixOff == w.N {
    			w.suffixOff = 0
    		}
    	}
    	return lenp, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    a single byte in the string.
    </li>
    
    <li>
    The iteration order over maps is not specified
    and is not guaranteed to be the same from one iteration to the next.
    If a map entry that has not yet been reached is removed during iteration,
    the corresponding iteration value will not be produced. If a map entry is
    created during iteration, that entry may be produced during the iteration or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    	if err != nil {
    		return err
    	}
    
    	// Give up after 2 loops.
    	// 2 * 500 pods per loop = 1000 max pods <- this should be enough for all test cases.
    	// Anything slower than that (requiring more iterations) indicates a problem and should fail the test.
    	maxLoops := 2
    	loops := maxLoops
    	for set.Status.Replicas < *set.Spec.Replicas {
    		if loops < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

    }
    
    // -----
    
    // Test a while to map_fn conversion in which tensor array is used instead of
    // tensor list and the tensor array size and the number of iterations are bounded
    // by separate constants of the same value.
    
    // CHECK-LABEL: map2/while/LoopCond_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// If resize results in net pod resource decrease, set pod cgroup config after resizing containers.
    	// If an error occurs at any point, abort. Let future syncpod iterations retry the unfinished stuff.
    	resizeContainers := func(rName v1.ResourceName, currPodCgLimValue, newPodCgLimValue, currPodCgReqValue, newPodCgReqValue int64) error {
    		var err error
    		if newPodCgLimValue > currPodCgLimValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top