Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,626 for startLine (0.62 sec)

  1. src/cmd/trace/jsontrace.go

    				return
    			}
    			opts.mode = traceviewer.ModeGoroutineOriented
    			if g.StartTime != 0 {
    				opts.startTime = g.StartTime.Sub(parsed.startTime())
    			} else {
    				opts.startTime = 0
    			}
    			if g.EndTime != 0 {
    				opts.endTime = g.EndTime.Sub(parsed.startTime())
    			} else { // The goroutine didn't end.
    				opts.endTime = parsed.endTime().Sub(parsed.startTime())
    			}
    			opts.focusGoroutine = goid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/stats/summary_sys_containers.go

    		s.Logs, s.Rootfs = nil, nil
    		s.Name = sys
    
    		// if we know the start time of a system container, use that instead of the start time provided by cAdvisor
    		if !cont.startTime.IsZero() {
    			s.StartTime = cont.startTime
    		}
    		stats = append(stats, *s)
    	}
    
    	return stats
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. android/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
    - 38.6K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    		if pp.gcMarkWorkerMode == gcMarkWorkerNotWorker {
    			throw("gcBgMarkWorker: mode not set")
    		}
    
    		startTime := nanotime()
    		pp.gcMarkWorkerStartTime = startTime
    		var trackLimiterEvent bool
    		if pp.gcMarkWorkerMode == gcMarkWorkerIdleMode {
    			trackLimiterEvent = pp.limiterEvent.start(limiterEventIdleMarkWork, startTime)
    		}
    
    		decnwait := atomic.Xadd(&work.nwait, -1)
    		if decnwait == work.nproc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/impl/DefaultDeleter.java

            LOGGER.debug("Deleting {}", root);
            long startTime = timeProvider.getAsLong();
            Map<String, FileDeletionResult> failedPaths = new LinkedHashMap<String, FileDeletionResult>();
            boolean attemptedToRemoveAnything = deleteRecursively(startTime, root, root, handling, failedPaths);
            if (!failedPaths.isEmpty()) {
                throwWithHelpMessage(startTime, root, handling, failedPaths, false);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:10:06 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/controller/tainteviction/taint_eviction.go

    		tc.cancelWorkWithEvent(logger, podNamespacedName)
    		return
    	}
    
    	startTime := now
    	triggerTime := startTime.Add(minTolerationTime)
    	scheduledEviction := tc.taintEvictionQueue.GetWorkerUnsafe(podNamespacedName.String())
    	if scheduledEviction != nil {
    		startTime = scheduledEviction.CreatedAt
    		if startTime.Add(minTolerationTime).Before(triggerTime) {
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

            this.scriptType = value;
        }
    
        public Long getStartTime() {
            checkSpecifiedProperty("startTime");
            return startTime;
        }
    
        public void setStartTime(Long value) {
            registerModifiedProperty("startTime");
            this.startTime = value;
        }
    
        public String getTarget() {
            checkSpecifiedProperty("target");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

            private final TestDescriptor testDescriptor;
            private final long startTime;
    
            Details(TestDescriptor testDescriptor, long startTime) {
                this.testDescriptor = testDescriptor;
                this.startTime = startTime;
            }
    
            @Override
            public TestDescriptor getTestDescriptor() {
                return testDescriptor;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. test/goto.go

    	goto L    // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    	if true { // GCCGO_ERROR "block starts here"
    	L:
    	}
    }
    
    func _() {
    	goto L    // ERROR "goto L jumps into block starting at LINE+1|goto jumps into block"
    	if true { // GCCGO_ERROR "block starts here"
    	L:
    	} else {
    	}
    }
    
    func _() {
    	goto L // ERROR "goto L jumps into block starting at LINE+2|goto jumps into block"
    	if true {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 02:27:58 UTC 2017
    - 8.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/BuildTimestampValueSource.java

    class BuildTimestampValueSource extends AbstractValueSource {
        private final Date startTime;
        private final Map<String, String> properties;
    
        BuildTimestampValueSource(Date startTime, Map<String, String> properties) {
            super(false);
            this.startTime = startTime;
            this.properties = properties;
        }
    
        @Override
        public Object getValue(String expression) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top