Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 164 for startm (0.25 sec)

  1. src/internal/trace/order.go

    	var sb strings.Builder
    	for id, state := range order.gStates {
    		fmt.Fprintf(&sb, "G %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.pStates {
    		fmt.Fprintf(&sb, "P %d [status=%s seq=%s]\n", id, state.status, state.seq)
    	}
    	fmt.Fprintln(&sb)
    	for id, state := range order.mStates {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    //
    // When a mspan is in the heap free treap, state == mSpanFree
    // and heapmap(s->start) == span, heapmap(s->start+s->npages-1) == span.
    // If the mspan is in the heap scav treap, then in addition to the
    // above scavenged == true. scavenged == false in all other cases.
    //
    // When a mspan is allocated, state == mSpanInUse or mSpanManual
    // and heapmap(i) == span for all s->start <= i < s->start+s->npages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

        if (start < 0 || start > size) {
          return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
          return badPositionIndex(end, size, "end index");
        }
        // end < start
        return lenientFormat("end index (%s) must not be less than start index (%s)", end, start);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/time/time_test.go

    		sec := test.seconds
    		golden := &test.golden
    		tm := Unix(sec, 0).UTC()
    		start, end := tm.ZoneBounds()
    		if !(start.IsZero() && end.IsZero()) {
    			t.Errorf("ZoneBounds of %+v expects two zero Time, got:\n  start=%v\n  end=%v", *golden, start, end)
    		}
    	}
    
    	// If the zone begins at the beginning of time, start will be returned as a zero Time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Preconditions.java

        if (start < 0 || start > size) {
          return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
          return badPositionIndex(end, size, "end index");
        }
        // end < start
        return lenientFormat("end index (%s) must not be less than start index (%s)", end, start);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    //   - update the PodReady condition Pods according to the state of the Node Ready condition.
    func (nc *Controller) monitorNodeHealth(ctx context.Context) error {
    	start := nc.now()
    	defer func() {
    		updateAllNodesHealthDuration.Observe(time.Since(start.Time).Seconds())
    	}()
    
    	// We are listing nodes from local cache as we can tolerate some small delays
    	// comparing to state from etcd and there is eventual consistency anyway.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    	if err != nil {
    		generation = nil
    	}
    	template := util.CreatePodTemplate(ds.Spec.Template, generation, hash)
    	// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    	// likely all fail with the same error. For example a project with a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    	}
    	if cap(state.slotVars) < len(state.slots) {
    		state.slotVars = make([]VarID, len(state.slots))
    	} else {
    		state.slotVars = state.slotVars[:len(state.slots)]
    	}
    
    	if state.partsByVarOffset == nil {
    		state.partsByVarOffset = &partsByVarOffset{}
    	}
    	for varID, n := range state.vars {
    		parts := state.varParts[n]
    		state.varSlots[varID] = parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	runningOperations goroutinemap.GoRoutineMap
    
    	// For testing only: hook to call before an asynchronous operation starts.
    	// Not used when set to nil.
    	preOperationHook func(operationName string)
    
    	createProvisionedPVRetryCount int
    	createProvisionedPVInterval   time.Duration
    
    	// operationTimestamps caches start timestamp of operations
    	// (currently provision + binding/deletion) for metric recording.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    				maxbg = runtime.NumCPU()
    				break
    			}
    		}
    	}
    
    	started := 0
    	ended := 0
    	var last *distTest
    	for ended < len(worklist) {
    		for started < len(worklist) && started-ended < maxbg {
    			w := worklist[started]
    			started++
    			w.start <- !t.failed || t.keepGoing
    		}
    		w := worklist[ended]
    		dt := w.dt
    		if t.lastHeading != dt.heading {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top