Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,372 for ulong (0.04 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/ConnectionEvent.kt

      }
    
      data class ConnectionClosed(
        override val timestampNs: Long,
        override val connection: Connection,
      ) : ConnectionEvent()
    
      data class ConnectionAcquired(
        override val timestampNs: Long,
        override val connection: Connection,
        val call: Call,
      ) : ConnectionEvent()
    
      data class ConnectionReleased(
        override val timestampNs: Long,
        override val connection: Connection,
        val call: Call,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java

        }
    
        public synchronized List<AccessResultImpl<Long>> getAccessResultList(final String url) {
            final List<AccessResultImpl<Long>> acList = new ArrayList<>();
            for (final Map.Entry<String, Map<String, AccessResultImpl<Long>>> entry : sessionMap.entrySet()) {
                if (entry.getValue() != null) {
                    final AccessResultImpl<Long> ar = entry.getValue().get(url);
                    if (ar != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        protected int currentPageNumber;
    
        protected long allRecordCount;
    
        protected String allRecordCountRelation;
    
        protected int allPageCount;
    
        protected boolean existNextPage;
    
        protected boolean existPrevPage;
    
        protected long currentStartRecordNumber;
    
        protected long currentEndRecordNumber;
    
        protected List<String> pageNumberList;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeFormatting.java

        private TimeFormatting() {
        }
    
        public static String formatDurationVerbose(long durationMillis) {
            StringBuilder result = new StringBuilder();
            if (durationMillis > MILLIS_PER_HOUR) {
                result.append(durationMillis / MILLIS_PER_HOUR).append(" hrs ");
            }
            if (durationMillis > (long) MILLIS_PER_MINUTE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

            }
        }
    
        protected static long getLimitDocNum(final long total, final long limitPercentage, final long limitNumber) {
            final long percentNum = (long) (total * (limitPercentage / 100f));
            if (limitNumber < 0) {
                return percentNum;
            }
            return percentNum < limitNumber ? percentNum : limitNumber;
        }
    
        protected long getTotal() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AtomicLongMapBasherTest.java

        ArrayList<Future<Long>> futures = new ArrayList<>();
        for (int i = 0; i < nTasks; i++) {
          futures.add(
              threadPool.submit(
                  new Callable<Long>() {
                    @Override
                    public Long call() {
                      long threadSum = 0;
                      for (int j = 0; j < getsPerTask; j++) {
                        long delta = random.nextInt(deltaRange);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WaitAtEndOfBuildFixture.groovy

                          Thread.sleep(($minimumBuildTimeMillis - sinceStart) as Long)
                        }
                    }
                """
            }
            return """
                def startAt = System.nanoTime()
    
                interface MinimumBuildTimeParams extends ${BuildServiceParameters.name} {
                    Property<Long> getStartAt()
                    Property<Long> getMinimumBuildTimeMillis()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheCleanupAction.java

            private final Supplier<Long> releaseTimestampSupplier;
            private final Supplier<Long> snapshotTimestampSupplier;
    
            CleanupCondition(SortedSet<VersionSpecificCacheDirectory> cacheDirsWithSameBaseVersion, Supplier<Long> releaseTimestampSupplier, Supplier<Long> snapshotTimestampSupplier) {
                this.cacheDirsWithSameBaseVersion = cacheDirsWithSameBaseVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/AbstractDecoder.java

        protected abstract int maybeReadBytes(byte[] buffer, int offset, int count) throws IOException;
    
        protected abstract long maybeSkip(long count) throws IOException;
    
        private class DecoderStream extends InputStream {
            byte[] buffer = new byte[1];
    
            @Override
            public long skip(long n) throws IOException {
                return maybeSkip(n);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

      /** An OID string like "2.5.4.11" for organizationalUnitName. */
      val type: String,
      val value: Any?,
    )
    
    internal data class Validity(
      val notBefore: Long,
      val notAfter: Long,
    ) {
      // Avoid Long.hashCode(long) which isn't available on Android 5.
      override fun hashCode(): Int {
        var result = 0
        result = 31 * result + notBefore.toInt()
        result = 31 * result + notAfter.toInt()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top