Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 219 for startm (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // the order the corresponding events are fired.
    class TestEventListener {
     public:
      virtual ~TestEventListener() {}
    
      // Fired before any test activity starts.
      virtual void OnTestProgramStart(const UnitTest& unit_test) = 0;
    
      // Fired before each iteration of tests starts.  There may be more than
      // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
      // index, starting from 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    }
    
    type MyMarshalerTest struct {
    }
    
    var _ Marshaler = (*MyMarshalerTest)(nil)
    
    func (m *MyMarshalerTest) MarshalXML(e *Encoder, start StartElement) error {
    	e.EncodeToken(start)
    	e.EncodeToken(CharData([]byte("hello world")))
    	e.EncodeToken(EndElement{start.Name})
    	return nil
    }
    
    type MyMarshalerAttrTest struct {
    }
    
    var _ MarshalerAttr = (*MyMarshalerAttrTest)(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K 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. tensorflow/compiler/jit/deadness_analysis.cc

    // iterations).
    class AndRecurrencePredicate : public Predicate {
     public:
      explicit AndRecurrencePredicate(int64_t id, Predicate* start, Predicate* step,
                                      std::vector<string> frame)
          : Predicate(id), operands_({start, step}), frame_(std::move(frame)) {}
    
      Predicate* start() const { return operands_[0]; }
      Predicate* step() const { return operands_[1]; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. 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)
Back to top