Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,455 for ulong (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationRecord.java

            .onResultOf((Function<BuildOperationRecord, Comparable<Long>>) input -> input.startTime)
            .compound(Ordering.natural().onResultOf(input -> input.id));
    
        public final Long id;
        public final Long parentId;
        public final String displayName;
        public final long startTime;
        public final long endTime;
        public final Map<String, ?> details;
        private final String detailsClassName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 03:56:13 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Internal.java

       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
       * {@link Long#MAX_VALUE} or {@link Long#MIN_VALUE}. This behavior can be useful when decomposing
       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
      static long toNanosSaturated(Duration duration) {
        // Using a try/catch seems lazy, but the catch block will rarely get invoked (except for
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/flowcontrol/WindowCounter.kt

    ) {
      /** The total number of bytes consumed. */
      var total: Long = 0L
        private set
    
      /** The total number of bytes acknowledged by outgoing `WINDOW_UPDATE` frames. */
      var acknowledged: Long = 0L
        private set
    
      val unacknowledged: Long
        @Synchronized get() = total - acknowledged
    
      @Synchronized
      fun update(
        total: Long = 0,
        acknowledged: Long = 0,
      ) {
        check(total >= 0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

        for (int value : TEST_INTS) {
          long expected = value & 0xffffffffL;
          assertWithMessage(UnsignedInts.toString(value))
              .that(UnsignedInteger.fromIntBits(value).longValue())
              .isEqualTo(expected);
        }
      }
    
      public void testValueOfLong() {
        long min = 0;
        long max = (1L << 32) - 1;
        for (long value : TEST_LONGS) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeSource.java

     */
    
    package org.gradle.internal.time;
    
    interface TimeSource {
    
        long currentTimeMillis();
    
        long nanoTime();
    
        TimeSource SYSTEM = new TimeSource() {
            @Override
            public long currentTimeMillis() {
                return System.currentTimeMillis();
            }
    
            @Override
            public long nanoTime() {
                return System.nanoTime();
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 999 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/typeconversion/LongFromCharSequenceNotationConverter.java

    @NonNullApi
    public class LongFromCharSequenceNotationConverter implements NotationConverter<CharSequence, Long> {
    
        @Override
        public void convert(CharSequence notation, NotationConvertResult<? super Long> result) throws TypeConversionException {
            try {
                result.converted(Long.valueOf(notation.toString()));
            } catch (NumberFormatException ex) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/internal/DefaultFileDownloadFailureResult.java

        private final long bytesDownloaded;
    
        public DefaultFileDownloadFailureResult(long startTime, long endTime, List<? extends Failure> failures, long bytesDownloaded) {
            super(startTime, endTime, failures);
            this.bytesDownloaded = bytesDownloaded;
        }
    
        @Override
        public long getBytesDownloaded() {
            return bytesDownloaded;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsAccessToken.java

            this.createdBy = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
            return createdTime;
        }
    
        public void setCreatedTime(Long value) {
            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public Long getExpiredTime() {
            checkSpecifiedProperty("expiredTime");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FileBackedBlockStore.java

            } catch (CorruptedCacheException e) {
                throw e;
            } catch (Exception e) {
                throw new UncheckedIOException(e);
            }
        }
    
        private long alloc(long length) {
            long pos = nextBlock;
            nextBlock += length;
            return pos;
        }
    
        private final class BlockImpl extends Block {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Internal.java

       *
       * <p>Instead of throwing {@link ArithmeticException}, this method silently saturates to either
       * {@link Long#MAX_VALUE} or {@link Long#MIN_VALUE}. This behavior can be useful when decomposing
       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
      @SuppressWarnings({
        // We use this method only for cases in which we need to decompose to primitives.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top