Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,355 for ulong (0.09 sec)

  1. 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)
  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/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

            }
    
            @Override
            void maybeFlushOutput(long eventTimestamp) {
                if (timeoutExpired(eventTimestamp, HIGH_WATERMARK_FLUSH_TIMEOUT) || (timeoutExpired(eventTimestamp, LOW_WATERMARK_FLUSH_TIMEOUT) && canClaimForeground())) {
                    flushOutput();
                }
            }
    
            private boolean timeoutExpired(long eventTimestamp, long timeout) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/s390x/asmz.go

    	op_MDEBR   uint32 = 0xB30C // FORMAT_RRE        MULTIPLY (short to long BFP)
    	op_MDER    uint32 = 0x3C00 // FORMAT_RR         MULTIPLY (short to long HFP)
    	op_MDR     uint32 = 0x2C00 // FORMAT_RR         MULTIPLY (long HFP)
    	op_MDTR    uint32 = 0xB3D0 // FORMAT_RRF1       MULTIPLY (long DFP)
    	op_MDTRA   uint32 = 0xB3D0 // FORMAT_RRF1       MULTIPLY (long DFP)
    	op_ME      uint32 = 0x7C00 // FORMAT_RX1        MULTIPLY (short to long HFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top