Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,761 for ulong (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

        private long physicalMemoryThresholdInBytes;
        private long virtualMemoryThresholdInBytes;
        private static final Logger LOGGER = Logging.getLogger(LowMemoryDaemonExpirationStrategy.class);
    
        // Reasonable default threshold bounds: between 384M and 1G
        public static final long MIN_THRESHOLD_BYTES = 384 * 1024 * 1024;
        public static final long MAX_THRESHOLD_BYTES = 1024 * 1024 * 1024;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/SimpleTestResult.groovy

        List<Throwable> exceptions = []
        Throwable exception = exceptions[0]
        List<TestFailure> failures
        long startTime = 0
        long endTime = startTime + 100
        long testCount = 1
        long successfulTestCount = 1
        long failedTestCount = 0
        long skippedTestCount = 0
    
        SimpleTestResult(long endTime = 100) {
            this.endTime = endTime
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top