Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for startTimer (0.19 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/ProgressLogEventGenerator.java

            private final String loggingHeader;
            private final long startTime;
            private final boolean hasLoggingHeader;
            private String status = "";
            private State state = State.None;
            private long completeTime;
    
            private Operation(String category, String loggingHeader, long startTime, OperationIdentifier buildOperationIdentifier) {
                this.category = category;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultTimer.java

     * limitations under the License.
     */
    package org.gradle.internal.time;
    
    import java.util.concurrent.TimeUnit;
    
    class DefaultTimer implements Timer {
    
        private final TimeSource timeSource;
        private long startTime;
    
        DefaultTimer(TimeSource timeSource) {
            this.timeSource = timeSource;
            reset();
        }
    
        @Override
        public String getElapsed() {
            long elapsedMillis = getElapsedMillis();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph_populator.go

    			return
    		}
    	}
    
    	klog.V(4).Infof("updatePod %s/%s for node %s", pod.Namespace, pod.Name, pod.Spec.NodeName)
    	startTime := time.Now()
    	g.graph.AddPod(pod)
    	klog.V(5).Infof("updatePod %s/%s for node %s completed in %v", pod.Namespace, pod.Name, pod.Spec.NodeName, time.Since(startTime))
    }
    
    func resourceClaimStatusesEqual(statusA, statusB []corev1.PodResourceClaimStatus) bool {
    	if len(statusA) != len(statusB) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

                points.add(new TimePoint(it, it.startTime))
                points.add(new TimePoint(it, it.endTime, true))
            }
    
            def concurrentOperations = []
            points.sort().each {
                if (it.end) {
                    concurrentOperations.remove(it.operation)
                } else {
                    if ((it.operation.endTime - it.operation.startTime) > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/TestLogger.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.concurrent
    
    class TestLogger {
        private final long startTime = System.nanoTime()
    
        void log(def msg) {
            println "* [${(long) ((System.nanoTime() - startTime) / 1000000L)}ms] [${Thread.currentThread().name}] ${msg}"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 886 bytes
    - Viewed (0)
  6. cmd/metrics-v3-system-process.go

    	}
    
    	if stat.VirtualMemory() > 0 {
    		m.Set(processVirtualMemoryBytes, float64(stat.VirtualMemory()))
    	}
    
    	startTime, err := stat.StartTime()
    	if err != nil {
    		metricsLogIf(ctx, err)
    	} else if startTime > 0 {
    		m.Set(processStartTimeSeconds, float64(startTime))
    	}
    }
    
    func loadProcIOMetrics(ctx context.Context, io procfs.ProcIO, m MetricValues) {
    	if io.RChar > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 16:07:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        public String scriptResult;
    
        @Required
        public String startTime;
    
        public String endTime;
    
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
            scriptData = null;
            scriptResult = null;
            startTime = null;
            endTime = null;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/kubeconfig.go

    				Duration: validityPeriod,
    			}
    
    			startTime := kubeadmutil.StartTimeUTC()
    			notAfter := startTime.Add(kubeadmconstants.CertificateValidityPeriod)
    			if internalCfg.ClusterConfiguration.CertificateValidityPeriod != nil {
    				notAfter = startTime.Add(validityPeriod)
    			}
    
    			// if the kubeconfig file for an additional user has to use a token, use it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

                    + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
                    + startTime + ", target=" + target + ", docMeta=" + docMeta + "]";
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/AbstractWritableResultsStore.groovy

                   testClass,
                   testId,
                   testProject,
                   '${os.name()}' as os,
                   avg(TIMESTAMPDIFF(SECOND, testExecution.startTime, testExecution.endTime)) as duration
                from testExecution
               where startTime > ?
                 and (channel in (?, ?))
                  or channel like ?
                 and testProject is not null
               group by testClass, testId, testProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top