Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,626 for startLine (2.12 sec)

  1. guava/src/com/google/common/util/concurrent/Monitor.java

          return 0L;
        } else {
          long startTime = System.nanoTime();
          return (startTime == 0L) ? 1L : startTime;
        }
      }
    
      /**
       * Returns the remaining nanos until the given timeout, or 0L if the timeout has already elapsed.
       * Caller must have previously sanitized timeoutNanos using toSafeNanos.
       */
      private static long remainingNanos(long startTime, long timeoutNanos) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("Processing PVC", "PVC", klog.KRef(pvcNamespace, pvcName))
    	startTime := time.Now()
    	defer func() {
    		logger.V(4).Info("Finished processing PVC", "PVC", klog.KRef(pvcNamespace, pvcName), "duration", time.Since(startTime))
    	}()
    
    	pvc, err := c.pvcLister.PersistentVolumeClaims(pvcNamespace).Get(pvcName)
    	if apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ServiceTest.java

      public void testStateOrdering() {
        // List every valid (direct) state transition.
        assertLessThan(NEW, STARTING);
        assertLessThan(NEW, TERMINATED);
    
        assertLessThan(STARTING, RUNNING);
        assertLessThan(STARTING, STOPPING);
        assertLessThan(STARTING, FAILED);
    
        assertLessThan(RUNNING, STOPPING);
        assertLessThan(RUNNING, FAILED);
    
        assertLessThan(STOPPING, FAILED);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  4. pkg/kubelet/active_deadline_test.go

    	pods[1].Status.StartTime = &startTime
    	pods[1].Spec.ActiveDeadlineSeconds = &notYetActiveDeadlineSeconds
    
    	// this pod has no deadline
    	pods[2].Status.StartTime = &startTime
    	pods[2].Spec.ActiveDeadlineSeconds = nil
    
    	// this pod has no start time
    	pods[3].Status.StartTime = nil
    	pods[3].Spec.ActiveDeadlineSeconds = &notYetActiveDeadlineSeconds
    
    	testCases := []struct {
    		pod      *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 08 09:06:42 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

            map.put("id", id);
    
            if (parentId != null) {
                map.put("parentId", parentId);
            }
    
            map.put("startTime", startTime);
            map.put("endTime", endTime);
            map.put("duration", endTime - startTime);
    
            if (details != null) {
                map.put("details", details);
                map.put("detailsClassName", detailsClassName);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  6. internal/bucket/bandwidth/measurement.go

    	// Calculate aggregate avg bandwidth and exp window avg
    	m.lock.Lock()
    	defer func() {
    		m.startTime = endTime
    		m.lock.Unlock()
    	}()
    
    	if m.startTime.IsZero() {
    		return
    	}
    
    	if endTime.Before(m.startTime) {
    		return
    	}
    
    	duration := endTime.Sub(m.startTime)
    
    	bytesSinceLastWindow := atomic.SwapUint64(&m.bytesSinceLastWindow, 0)
    
    	if m.expMovingAvg == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 03 20:41:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    func (c *Controller) syncEndpoints(logger klog.Logger, key string) error {
    	startTime := time.Now()
    	defer func() {
    		syncDuration := float64(time.Since(startTime).Milliseconds()) / 1000
    		metrics.EndpointsSyncDuration.WithLabelValues().Observe(syncDuration)
    		logger.V(4).Info("Finished syncing EndpointSlices for Endpoints", "key", key, "elapsedTime", time.Since(startTime))
    	}()
    
    	logger.V(4).Info("syncEndpoints", "key", key)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            CrossVersionPerformanceResults result1 = crossVersionResults([startTime: 100])
            result1.version('5.0-mockbaseline-1').results.addAll(measuredOperations([1]))
            result1.version('master').results.addAll(measuredOperations([2]))
    
            CrossVersionPerformanceResults result2 = crossVersionResults([startTime: 200])
            result2.version('5.0-mockbaseline-2').results.addAll(measuredOperations([2, 2]))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/RunBuildAction.java

        private final long startTime;
        private final BuildActionParameters buildActionParameters;
        private final ServiceRegistry sharedServices;
        private final Stoppable stoppable;
    
        public RunBuildAction(
            BuildActionExecutor<BuildActionParameters, ClientBuildRequestContext> executor, StartParameterInternal startParameter, GradleLauncherMetaData clientMetaData, long startTime,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/processlog/processlog_test.go

    			wantOutputLogPath: "output/format_txt_with_time_filter.log",
    			startTime:         "2020-06-29T23:37:27.336155Z",
    			endTime:           "2020-06-29T23:37:27.349559Z",
    			timeFilterApplied: true,
    		},
    		{
    			name:              "input_log_of_json_format",
    			inputLogFilePath:  "input/format_json.log",
    			wantOutputLogPath: "output/format_json_with_time_filter.log",
    			startTime:         "2023-05-10T17:43:55.356647Z",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top