Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,237 for startingAt (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildStartedTime.java

     * During continuous build, subsequent builds are timed from when changes are noticed.
     */
    public class BuildStartedTime {
    
        private volatile long startTime;
    
        public static BuildStartedTime startingAt(long startTime) {
            return new BuildStartedTime(startTime);
        }
    
        public BuildStartedTime(long startTime) {
            this.startTime = startTime;
        }
    
        public long getStartTime() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 03:50:47 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/SessionFailureReportingActionExecutor.java

                }
                RuntimeException failure = exceptionAnalyser.transform(e);
                BuildStartedTime buildStartedTime = BuildStartedTime.startingAt(requestContext.getStartTime());
                BuildLogger buildLogger = buildLoggerFactory.create(Logging.getLogger(SessionFailureReportingActionExecutor.class), action.getStartParameter(), buildStartedTime, requestContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildResultLoggerTest.groovy

    @Subject(BuildResultLogger)
    class BuildResultLoggerTest extends Specification {
        private StyledTextOutputFactory textOutputFactory = new TestStyledTextOutputFactory()
        private BuildStartedTime buildStartedTime = BuildStartedTime.startingAt(0)
        private Clock clock = Mock(Clock)
        private DurationFormatter durationFormatter = Mock(DurationFormatter)
        def workValidationWarningReporter = Stub(WorkValidationWarningReporter)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

        }
    
        @Provides
        BuildStartedTime createBuildStartedTime(Clock clock, BuildRequestMetaData buildRequestMetaData) {
            long currentTime = clock.getCurrentTime();
            return BuildStartedTime.startingAt(Math.min(currentTime, buildRequestMetaData.getStartTime()));
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. 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)
  6. android/guava/src/com/google/common/util/concurrent/AbstractService.java

              case NEW:
                snapshot = new StateSnapshot(TERMINATED);
                enqueueTerminatedEvent(NEW);
                break;
              case STARTING:
                snapshot = new StateSnapshot(STARTING, true, null);
                enqueueStoppingEvent(STARTING);
                doCancelStart();
                break;
              case RUNNING:
                snapshot = new StateSnapshot(STOPPING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. 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)
  8. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          "FINE: Q10000 scheduled after 100 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 run again after  50 µs: task",
          "FINE: Q10000 finished run in   0 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 run again after 150 µs: task",
          "FINE: Q10000 finished run in   0 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 finished run in   0 µs: task",
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

          }
        }
    
        @Override
        public synchronized void starting() {
          assertTrue(stateHistory.isEmpty());
          assertNotSame(State.NEW, service.state());
          stateHistory.add(State.STARTING);
        }
    
        @Override
        public synchronized void running() {
          assertEquals(State.STARTING, Iterables.getOnlyElement(stateHistory));
          stateHistory.add(State.RUNNING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

          }
        }
    
        @Override
        public synchronized void starting() {
          assertTrue(stateHistory.isEmpty());
          assertNotSame(State.NEW, service.state());
          stateHistory.add(State.STARTING);
        }
    
        @Override
        public synchronized void running() {
          assertEquals(State.STARTING, Iterables.getOnlyElement(stateHistory));
          stateHistory.add(State.RUNNING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
Back to top