Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,469 for ulong (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

            registerConverter(new IntegerNumberConverter(int.class), int.class);
            registerConverter(new LongNumberConverter(Long.class), Long.class);
            registerConverter(new LongNumberConverter(long.class), long.class);
            registerConverter(new ShortNumberConverter(Short.class), Short.class);
            registerConverter(new ShortNumberConverter(short.class), short.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/ByteStreams.java

       * happens first. Returns the total number of bytes skipped.
       */
      static long skipUpTo(InputStream in, long n) throws IOException {
        long totalSkipped = 0;
        // A buffer is allocated if skipSafely does not skip any bytes.
        byte[] buf = null;
    
        while (totalSkipped < n) {
          long remaining = n - totalSkipped;
          long skipped = skipSafely(in, remaining);
    
          if (skipped == 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

            private final WorkerProcess delegate;
            private final MemoryManager memoryResourceManager;
            private final long memoryAmount;
    
            private MemoryRequestingWorkerProcess(WorkerProcess delegate, MemoryManager memoryResourceManager, long memoryAmount) {
                this.delegate = delegate;
                this.memoryResourceManager = memoryResourceManager;
                this.memoryAmount = memoryAmount;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

        }
    
        private long initializeHome() {
            executer.requireIsolatedDaemons() // needs to stop daemon
            requireOwnGradleUserHomeDir() // needs its own journal
            run() // Make sure cache directory is initialized
            run '--stop' // ensure daemon does not cache file access times in memory
            return gcFile().makeOlder().lastModified()
        }
    
        long markCacheLastCleaned(long timeMillis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/Monitor.java

       * overflowing or underflowing, by bounding the value between 0 and (Long.MAX_VALUE / 4) * 3.
       * Actually waiting for more than 219 years is not supported!
       */
      private static long toSafeNanos(long time, TimeUnit unit) {
        long timeoutNanos = unit.toNanos(time);
        return Longs.constrainToRange(timeoutNanos, 0L, (Long.MAX_VALUE / 4) * 3);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Streams.java

        class Splitr extends MapWithIndexSpliterator<Spliterator.OfLong, R, Splitr>
            implements LongConsumer, Spliterator<R> {
          long holder;
    
          Splitr(Spliterator.OfLong splitr, long index) {
            super(splitr, index);
          }
    
          @Override
          public void accept(long t) {
            this.holder = t;
          }
    
          @Override
          public boolean tryAdvance(Consumer<? super R> action) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

        abstract byte[] bytes();
    
        @VisibleForTesting
        static class HashCode128 extends HashCode {
            private final long bits1;
            private final long bits2;
    
            public HashCode128(long bits1, long bits2) {
                this.bits1 = bits1;
                this.bits2 = bits2;
            }
    
            @Override
            public int length() {
                return 16;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            final long execTime = systemHelper.getCurrentTimeAsLong() - startTime;
            crawlingInfoHelper.putToInfoMap(Constants.DATA_CRAWLING_EXEC_TIME, Long.toString(execTime));
            if (logger.isInfoEnabled()) {
                logger.info("[EXEC TIME] crawling time: {}ms", execTime);
            }
    
            crawlingInfoHelper.putToInfoMap(Constants.DATA_INDEX_EXEC_TIME, Long.toString(indexUpdateCallback.getExecuteTime()));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	return &Error{ErrorTypeForbidden, field.String(), "", detail}
    }
    
    // TooLong returns a *Error indicating "too long".  This is used to
    // report that the given value is too long.  This is similar to
    // Invalid, but the returned error will not include the too-long
    // value.
    func TooLong(field *Path, value interface{}, maxLength int) *Error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/services/CacheInstrumentationDataBuildService.java

        }
    
        @Nullable
        public String getArtifactHash(long contextId, File file) {
            return getResolutionData(contextId).getArtifactHash(file);
        }
    
        public FileCollection getTypeHierarchyAnalysis(long contextId) {
            return getResolutionData(contextId).getTypeHierarchyAnalysisResult();
        }
    
        private ResolutionData getResolutionData(long contextId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top