Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,757 for ulong (0.08 sec)

  1. src/main/resources/fess_indices/fess_config.access_token/access_token.json

            "type": "keyword"
          },
          "expiredTime": {
            "type": "long"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "updatedBy": {
            "type": "keyword"
          },
          "updatedTime": {
            "type": "long"
          }
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 529 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultFileDownloadSuccessResult.java

        private final long bytesDownloaded;
    
        public DefaultFileDownloadSuccessResult(long startTime, long endTime, long bytesDownloaded) {
            super(startTime, endTime);
            this.bytesDownloaded = bytesDownloaded;
        }
    
        @Override
        public long getBytesDownloaded() {
            return bytesDownloaded;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 21 23:09:51 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultAvailableOsMemoryStatusAspect.java

    @NonNullApi
    public class DefaultAvailableOsMemoryStatusAspect implements OsMemoryStatusAspect.Available {
        private final String name;
        private final long total;
        private final long free;
    
        public DefaultAvailableOsMemoryStatusAspect(String name, long total, long free) {
            if (name == null) {
                throw new IllegalArgumentException("name cannot be null");
            }
            if (total < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Primitives.java

       *     wrap(String.class) == String.class
       * </pre>
       */
      public static <T> Class<T> wrap(Class<T> type) {
        checkNotNull(type);
    
        // cast is safe: long.class and Long.class are both of type Class<Long>
        @SuppressWarnings("unchecked")
        Class<T> wrapped = (Class<T>) PRIMITIVE_TO_WRAPPER_TYPE.get(type);
        return (wrapped == null) ? type : wrapped;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. 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)
Back to top