Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,455 for ulong (0.05 sec)

  1. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/BuildCacheEntryPacker.java

        class PackResult {
            private final long entries;
    
            public PackResult(long entries) {
                this.entries = entries;
            }
    
            public long getEntries() {
                return entries;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/util/ConsoleTransferListener.java

            downloads.put(resource, event.getTransferredBytes());
    
            StringBuilder buffer = new StringBuilder(64);
    
            for (Map.Entry<TransferResource, Long> entry : downloads.entrySet()) {
                long total = entry.getKey().getContentLength();
                long complete = entry.getValue();
    
                buffer.append(getStatus(complete, total)).append("  ");
            }
    
            int pad = lastLength - buffer.length();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

        //                                                                           =========
        /** endTime */
        protected Long endTime;
    
        /** jobName */
        protected String jobName;
    
        /** jobStatus */
        protected String jobStatus;
    
        /** lastUpdated */
        protected Long lastUpdated;
    
        /** scriptData */
        protected String scriptData;
    
        /** scriptResult */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/CachingFileHasher.java

        public HashCode hash(File file, long length, long lastModified) {
            return snapshot(file, length, lastModified).getHash();
        }
    
        private FileInfo snapshot(File file) {
            FileMetadata fileMetadata = fileSystem.stat(file);
            return snapshot(file, fileMetadata.getLength(), fileMetadata.getLastModified());
        }
    
        private FileInfo snapshot(File file, long length, long timestamp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 13:47:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedScheduledExecutorImpl.java

            return delegate.scheduleAtFixedRate(trackedCommand(command), initialDelay, period, unit);
        }
    
        @Override
        public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) {
            return delegate.scheduleWithFixedDelay(trackedCommand(command), initialDelay, delay, unit);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/StatStatistics.java

                final long unixModeCount = this.unixModeCount.getAndSet(0);
                final long statCount = this.statCount.getAndSet(0);
    
                return new StatStatistics() {
                    @Override
                    public long getStatCount() {
                        return statCount;
                    }
    
                    @Override
                    public long getUnixModeCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/MathPreconditionsTest.java

        try {
          MathPreconditions.checkPositive("long", 0L);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCheckPositive_maxLong() {
        MathPreconditions.checkPositive("long", Long.MAX_VALUE);
      }
    
      public void testCheckPositive_minLong() {
        try {
          MathPreconditions.checkPositive("long", Long.MIN_VALUE);
          fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestResultsProvider.java

         */
        void writeTestOutput(long classId, long testId, TestOutputEvent.Destination destination, Writer writer);
    
        /**
         * Visits the results of each test class, in no specific order. Each class is visited exactly once.
         */
        void visitClasses(Action<? super TestClassResult> visitor);
    
        boolean hasOutput(long classId, TestOutputEvent.Destination destination);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/initialization/DefaultBuildRequestMetaData.java

        private final long startTime;
        private final boolean interactive;
    
        public DefaultBuildRequestMetaData(BuildClientMetaData clientMetaData, long startTime, boolean interactive) {
            this.clientMetaData = clientMetaData;
            this.startTime = startTime;
            this.interactive = interactive;
        }
    
        public DefaultBuildRequestMetaData(long startTime) {
            this(startTime, false);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:55:06 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/WrappingScheduledExecutorService.java

          Runnable command, long initialDelay, long period, TimeUnit unit) {
        return delegate.scheduleAtFixedRate(wrapTask(command), initialDelay, period, unit);
      }
    
      @Override
      public final ScheduledFuture<?> scheduleWithFixedDelay(
          Runnable command, long initialDelay, long delay, TimeUnit unit) {
        return delegate.scheduleWithFixedDelay(wrapTask(command), initialDelay, delay, unit);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top