Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,458 for ulong (0.04 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

    public class BuildProfile {
    
        private static final long NOT_INITIALIZED_VALUE = -1L;
        private final Map<String, ProjectProfile> projects = new LinkedHashMap<>();
        private final Map<String, ContinuousOperation> dependencySets = new LinkedHashMap<>();
        private final Map<String, FragmentedOperation> transforms = new LinkedHashMap<>();
        private long profilingStarted = NOT_INITIALIZED_VALUE;
        private long buildStarted = NOT_INITIALIZED_VALUE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/transfer/FileSizeFormat.java

            }
        }
    
        public String formatProgress(long progressedSize, long size) {
            StringBuilder sb = new StringBuilder();
            formatProgress(sb, progressedSize, size);
            return sb.toString();
        }
    
        public void formatProgress(StringBuilder builder, long progressedSize, long size) {
            if (progressedSize < 0L) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestClassResult.java

        private final String classDisplayName;
        private long startTime;
        private int failuresCount;
        private int skippedCount;
        private long id;
    
        public TestClassResult(long id, String className, long startTime) {
            this(id, className, null, startTime);
        }
    
        public TestClassResult(long id, String className, @Nullable String classDisplayName, long startTime) {
            if (id < 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/DefaultTestResult.java

        private final List<TestFailure> failures;
        private final ResultType resultType;
        private final long startTime;
        private final long endTime;
        private final long testCount;
        private final long successfulCount;
        private final long failedCount;
    
        public DefaultTestResult(TestState state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/VersionHierarchy.java

     */
    public class VersionHierarchy {
        private final long version;
        // We store the maximum version as a performance optimization, so we don't need
        // to query the children every time we query the version for a hierarchy.
        private final long maxVersionInHierarchy;
        private final ChildMap<VersionHierarchy> children;
    
        public static VersionHierarchy empty(long version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestMethodResult.java

            this.id = id;
            this.name = name;
            this.displayName = displayName;
        }
    
        public TestMethodResult(long id, String name, TestResult.ResultType resultType, long duration, long endTime) {
            this(id, name, name, resultType, duration, endTime);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/LittleEndianByteArray.java

          public long getLongLittleEndian(byte[] array, int offset) {
            long bigEndian = theUnsafe.getLong(array, (long) offset + BYTE_ARRAY_BASE_OFFSET);
            // The hardware is big-endian, so we need to reverse the order of the bytes.
            return Long.reverseBytes(bigEndian);
          }
    
          @Override
          public void putLongLittleEndian(byte[] array, int offset, long value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java

         */
        @Override
        public void iterate(final String sessionId, final AccessResultCallback<AccessResultImpl<Long>> accessResultCallback) {
            final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(sessionId);
            for (final Map.Entry<String, AccessResultImpl<Long>> entry : arMap.entrySet()) {
                accessResultCallback.iterate(entry.getValue());
            }
        }
    
        /*
         * (non-Javadoc)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java

            this.delayMillisAtNoUrlInQueue = delayMillisAtNoUrlInQueue;
        }
    
        public long getDelayMillisBeforeProcessing() {
            return delayMillisBeforeProcessing;
        }
    
        public void setDelayMillisBeforeProcessing(final long delayMillisBeforeProcessing) {
            this.delayMillisBeforeProcessing = delayMillisBeforeProcessing;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/util/EsResultList.java

        private static final long serialVersionUID = 1L;
    
        private long totalHits;
    
        private long tookInMillis;
    
        public void setTotalHits(final long totalHits) {
            this.totalHits = totalHits;
        }
    
        public long getTotalHits() {
            return totalHits;
        }
    
        public void setTookInMillis(final long tookInMillis) {
            this.tookInMillis = tookInMillis;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top