Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 240 for startTimer (0.85 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractTestResult.java

    public abstract class AbstractTestResult extends AbstractResult implements InternalTestResult {
        protected AbstractTestResult(long startTime, long endTime, String outcomeDescription) {
            super(startTime, endTime, outcomeDescription);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 988 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/timer/TimeoutTask.java

        private final boolean permanent;
    
        private long startTime;
    
        private int status = ACTIVE;
    
        TimeoutTask(final TimeoutTarget timeoutTarget, final int timeout, final boolean permanent) {
            this.timeoutTarget = timeoutTarget;
            this.timeoutMillis = timeout * 1000L;
            this.permanent = permanent;
            this.startTime = System.currentTimeMillis();
        }
    
        /**
         * 期限切れかどうかを返します。
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/config/config.go

    	// StartTime is the start time the log capture time range.
    	// If set, Since must be unset.
    	StartTime time.Time `json:"startTime,omitempty"`
    	// EndTime is the end time the log capture time range.
    	// Default is now.
    	EndTime time.Time `json:"endTime,omitempty"`
    	// Since defines the start time the log capture time range.
    	// StartTime is set to EndTime - Since.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/internal/time/MockClock.java

    public class MockClock implements Clock {
    
        long current;
    
        public MockClock() {
            this(System.currentTimeMillis());
        }
    
        public MockClock(long startTime) {
            current = startTime;
        }
    
        public void increment(long diff) {
            current += diff;
        }
    
        /** Increments the time by 10ms and returns it. */
        @Override
        public long getCurrentTime() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 03:50:47 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        public void setPreviousTestIds(List<String> previousTestIds) {
            this.previousTestIds = previousTestIds;
        }
    
        public long getStartTime() {
            return startTime;
        }
    
        public void setStartTime(long startTime) {
            this.startTime = startTime;
        }
    
        public long getEndTime() {
            return endTime;
        }
    
        public void setEndTime(long endTime) {
            this.endTime = endTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/DefaultTestResult.java

        }
    
        public DefaultTestResult(ResultType resultType, long startTime, long endTime, long testCount, long successfulCount, long failedCount, List<TestFailure> failures) {
            this.resultType = resultType;
            this.startTime = startTime;
            this.endTime = endTime;
            this.testCount = testCount;
            this.successfulCount = successfulCount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/internal/DefaultProjectConfigurationFailureResult.java

        private final List<? extends PluginApplicationResult> pluginApplicationResults;
    
        public DefaultProjectConfigurationFailureResult(long startTime, long endTime, List<? extends Failure> failures, List<? extends PluginApplicationResult> pluginApplicationResults) {
            super(startTime, endTime, failures);
            this.pluginApplicationResults = pluginApplicationResults;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/AbstractTaskResult.java

        private final boolean incremental;
        private final List<String> executionReasons;
    
        protected AbstractTaskResult(long startTime, long endTime, String outcomeDescription, boolean incremental, List<String> executionReasons) {
            super(startTime, endTime, outcomeDescription);
            this.incremental = incremental;
            this.executionReasons = executionReasons;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top