Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 493 for ulong (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

          return NeverScheduledFuture.create();
        }
    
        private static class NeverScheduledFuture<V> extends AbstractFuture<V>
            implements ListenableScheduledFuture<V> {
    
          static <V> NeverScheduledFuture<V> create() {
            return new NeverScheduledFuture<>();
          }
    
          @Override
          public long getDelay(TimeUnit unit) {
            return Long.MAX_VALUE;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/time/src/test/groovy/org/gradle/internal/time/MonotonicClockTest.groovy

            then:
            clock.currentTime == time(30)
        }
    
        private void setNanos(long millis) {
            1 * timeSource.nanoTime() >> START_NANOS + TimeUnit.MILLISECONDS.toNanos(millis)
        }
    
        private void setMillis(long millis) {
            1 * timeSource.currentTimeMillis() >> START_MILLIS + millis
        }
    
        private long time(millis) {
            START_MILLIS + millis
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/StringDeduplicatingKryoBackedDecoder.java

            return input.read(buffer, offset, count);
        }
    
        @Override
        protected long maybeSkip(long count) throws IOException {
            // Work around some bugs in Input.skip()
            int remaining = input.limit() - input.position();
            if (remaining == 0) {
                long skipped = inputStream.skip(count);
                if (skipped > 0) {
                    extraSkipped += skipped;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestResult.java

         *
         * @return The start time, in milliseconds since the epoch.
         */
        long getStartTime();
    
        /**
         * Returns the time when this test completed execution.
         *
         * @return The end t ime, in milliseconds since the epoch.
         */
        long getEndTime();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/language/DataTypeInternal.kt

            private
            fun readResolve(): Any = DefaultIntDataType
        }
    
        @Serializable
        @SerialName("long")
        data object DefaultLongDataType : DataType.LongDataType {
            override val constantType: Class<Long> = Long::class.java
            override fun toString(): String = "Long"
            private
            fun readResolve(): Any = DefaultLongDataType
        }
    
        @Serializable
        @SerialName("string")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockContentionHandler.java

    import javax.annotation.Nullable;
    import java.util.function.Consumer;
    
    @ServiceScope(Scope.Global.class)
    public interface FileLockContentionHandler {
        void start(long lockId, Consumer<FileLockReleasedSignal> whenContended);
    
        void stop(long lockId);
    
        int reservePort();
    
        /**
         * Pings the lock owner with the give port to start the lock releasing
         * process in the owner. May not ping the owner if:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 01:28:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotUtil.java

         */
        public static long getLength(FileSystemLocationSnapshot snapshot) {
            return snapshot.accept(new FileSystemLocationSnapshot.FileSystemLocationSnapshotTransformer<Long>() {
                @Override
                public Long visitDirectory(DirectorySnapshot directorySnapshot) {
                    return 0L;
                }
    
                @Override
                public Long visitRegularFile(RegularFileSnapshot fileSnapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top