Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 648 for startLine (5.68 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestStartEvent.java

    @UsedByScanPlugin
    public class TestStartEvent {
        private final long startTime;
        private final Object parentId;
    
        @UsedByScanPlugin("test-distribution")
        public TestStartEvent(long startTime) {
            this(startTime, null);
        }
    
        @UsedByScanPlugin("test-distribution")
        public TestStartEvent(long startTime, Object parentId) {
            this.startTime = startTime;
            this.parentId = parentId;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/OperationStartEvent.java

    public final class OperationStartEvent {
        private final long startTime;
    
        public OperationStartEvent(long startTime) {
            this.startTime = startTime;
        }
    
        public long getStartTime() {
            return startTime;
        }
    
        @Override
        public String toString() {
            return "OperationStartEvent{" +
                "startTime=" + startTime +
                '}';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/OperationFinishEvent.java

    public final class OperationFinishEvent {
        private final long startTime;
        private final long endTime;
        private final Throwable failure;
        private final Object result;
    
        public OperationFinishEvent(long startTime, long endTime, @Nullable Throwable failure, @Nullable Object result) {
            this.startTime = startTime;
            this.endTime = endTime;
            this.failure = failure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/internal/DefaultTaskSkippedResult.java

     */
    public final class DefaultTaskSkippedResult implements TaskSkippedResult {
    
        private final long startTime;
        private final long endTime;
        private final String skipMessage;
    
        public DefaultTaskSkippedResult(long startTime, long endTime, String skipMessage) {
            this.startTime = startTime;
            this.endTime = endTime;
            this.skipMessage = skipMessage;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top