Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,459 for ulong (0.04 sec)

  1. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultCountdownTimer.java

     */
    
    package org.gradle.internal.time;
    
    import java.util.concurrent.TimeUnit;
    
    class DefaultCountdownTimer extends DefaultTimer implements CountdownTimer {
    
        private final long timeoutMillis;
    
        DefaultCountdownTimer(TimeSource timeSource, long timeout, TimeUnit unit) {
            super(timeSource);
            if (timeout <= 0) {
                throw new IllegalArgumentException();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestCompleteEvent.java

    @UsedByScanPlugin
    public class TestCompleteEvent {
        private final long endTime;
        private final TestResult.ResultType resultType;
    
        @UsedByScanPlugin("test-distribution")
        public TestCompleteEvent(long endTime) {
            this(endTime, null);
        }
    
        @UsedByScanPlugin("test-distribution")
        public TestCompleteEvent(long endTime, TestResult.ResultType resultType) {
            this.endTime = endTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Striped64.java

       * provided.
       */
      static final class Cell {
        volatile long p0, p1, p2, p3, p4, p5, p6;
        volatile long value;
        volatile long q0, q1, q2, q3, q4, q5, q6;
    
        Cell(long x) {
          value = x;
        }
    
        final boolean cas(long cmp, long val) {
          return UNSAFE.compareAndSwapLong(this, valueOffset, cmp, val);
        }
    
        // Unsafe mechanics
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultTimer.java

        private final TimeSource timeSource;
        private long startTime;
    
        DefaultTimer(TimeSource timeSource) {
            this.timeSource = timeSource;
            reset();
        }
    
        @Override
        public String getElapsed() {
            long elapsedMillis = getElapsedMillis();
            return TimeFormatting.formatDurationVerbose(elapsedMillis);
        }
    
        @Override
        public long 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)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/cache/FileAccessTimeJournalFixture.groovy

        }
    
        void writeLastFileAccessTimeToJournal(File file, long millis) {
            def cache = new BTreePersistentIndexedCache<File, Long>(journal, FILE_SERIALIZER, LONG_SERIALIZER)
            try {
                cache.put(file, millis)
            } finally {
                cache.close()
            }
        }
    
        void writeJournalInceptionTimestamp(long millis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/stats/DaemonRunningStats.java

        }
    
        public long getStartTime() {
            return startTime;
        }
    
        public long getAllBuildsTime() {
            return allBuildsTime;
        }
    
        // TODO: these should be moved off to a separate type
    
        public void buildStarted() {
            ++buildCount;
            currentBuildTimer.reset();
        }
    
        public void buildFinished() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

            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. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //             TreeSubSetTest.suite());
      //     }
    
      public static long SHORT_DELAY_MS;
      public static long SMALL_DELAY_MS;
      public static long MEDIUM_DELAY_MS;
      public static long LONG_DELAY_MS;
    
      /**
       * Returns the shortest timed delay. This could be reimplemented to use for example a Property.
       */
      protected long getShortDelay() {
        return 50;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. 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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedThreadPoolExecutor.java

        int getMaximumPoolSize();
    
        void setKeepAliveTime(long time, TimeUnit unit);
    
        long getKeepAliveTime(TimeUnit unit);
    
        BlockingQueue<Runnable> getQueue();
    
        boolean remove(Runnable task);
    
        void purge();
    
        int getPoolSize();
    
        int getActiveCount();
    
        int getLargestPoolSize();
    
        long getTaskCount();
    
        long getCompletedTaskCount();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top