Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,374 for ulong (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

        protected final long allRecordCount;
        protected final String allRecordCountRelation;
        protected final long queryTime;
        protected final boolean partialResults;
        protected final FacetResponse facetResponse;
    
        SearchResult(final List<Map<String, Object>> documentList, final long allRecordCount, final String allRecordCountRelation,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/MemoryUtil.java

        }
    
        public static String getMemoryUsageLog() {
            final Runtime runtime = Runtime.getRuntime();
            final long freeBytes = runtime.freeMemory();
            final long maxBytes = runtime.maxMemory();
            final long totalBytes = runtime.totalMemory();
            final long usedBytes = totalBytes - freeBytes;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            given:
            def registry = new DefaultSerializerRegistry()
            registry.register(Long, longSerializer)
            registry.register(Integer, intSerializer)
            registry.useJavaSerialization(StringBuilder)
    
            expect:
            registry.canSerialize(Long)
            registry.canSerialize(Number)
            registry.canSerialize(Object)
            !registry.canSerialize(BigDecimal)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. android/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.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/DocList.java

    public class DocList extends ArrayList<Map<String, Object>> {
    
        private static final long serialVersionUID = 1L;
    
        private long contentSize = 0;
    
        private long processingTime = 0;
    
        @Override
        public void clear() {
            super.clear();
            contentSize = 0;
            processingTime = 0;
        }
    
        public long getContentSize() {
            return contentSize;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

                long hierarchyCount = this.hierarchyCount.getAndSet(0);
                long directoryCount = this.directoryCount.getAndSet(0);
                long fileCount = this.fileCount.getAndSet(0);
                long failedFileCount = this.failedFileCount.getAndSet(0);
    
                return new DirectorySnapshotterStatistics() {
                    @Override
                    public long getVisitedHierarchyCount() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/FileHasherStatistics.java

            public void reportFileHashed(long length) {
                hashedFileCount.incrementAndGet();
                hashedContentLength.addAndGet(length);
            }
    
            public FileHasherStatistics collect() {
                long hashedFileCount = this.hashedFileCount.getAndSet(0);
                long hashedContentLength = this.hashedContentLength.getAndSet(0);
                return new FileHasherStatistics() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top