Search Options

Results per page
Sort
Preferred Languages
Advance

Results 471 - 480 of 1,866 for longp (0.57 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

        private final boolean append;
    
        private boolean useNTSmbs;
        private int openFlags;
    
        private final int access;
    
        private int writeSize;
    
        private int writeSizeFile;
        private long fp;
        private byte[] tmp = new byte[1];
        private SmbComWriteAndX reqx;
        private SmbComWriteAndXResponse rspx;
        private SmbComWrite req;
        private SmbComWriteResponse rsp;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            return val;
        }
    
        /**
         * Encodes a long integer (4 bytes) in NDR format.
         *
         * @param l the long integer value to encode
         */
        public void enc_ndr_long(final int l) {
            align(4);
            Encdec.enc_uint32le(l, buf, index);
            advance(4);
        }
    
        /**
         * Decodes a long integer (4 bytes) from NDR format.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/AnyValue.kt

     * to resolve a concrete type.
     */
    internal data class AnyValue(
      var tagClass: Int,
      var tag: Long,
      var constructed: Boolean = false,
      var length: Long = -1L,
      val bytes: ByteString,
    ) {
      // Avoid Long.hashCode(long) which isn't available on Android 5.
      override fun hashCode(): Int {
        var result = 0
        result = 31 * result + tagClass
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            @Override
            public Long getCreateTime() {
                return System.currentTimeMillis();
            }
    
            @Override
            public Integer getExecutionTime() {
                return 100;
            }
    
            @Override
            public Long getContentLength() {
                return 1000L;
            }
    
            @Override
            public Long getLastModified() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

        public void testAuthenticationTimestamp() throws InterruptedException {
            long beforeCreation = System.currentTimeMillis();
    
            NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("user", "TimestampPass123!");
    
            long afterCreation = System.currentTimeMillis();
    
            // Set a reasonable TTL
            auth.setAuthenticationTTL(1000); // 1 second
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         */
        private static LoadingCache<String, Long> resourceHashCache =
                CacheBuilder.newBuilder().maximumSize(1000).expireAfterWrite(10, TimeUnit.MINUTES).build(new CacheLoader<String, Long>() {
                    @Override
                    public Long load(final String key) throws Exception {
                        try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  7. src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json

    {
        "properties": {
          "sessionId": {
            "type": "keyword"
          },
          "name": {
            "type": "keyword"
          },
          "expiredTime": {
            "type": "long"
          },
          "createdTime": {
            "type": "long"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 246 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            helper.init();
    
            assertNotNull(helper.userInfoCache);
            assertNotNull(helper.searchLogLogger);
        }
    
        public void test_setUserCheckInterval() {
            long interval = 5 * 60 * 1000L; // 5 minutes
            searchLogHelper.setUserCheckInterval(interval);
            assertEquals(interval, searchLogHelper.userCheckInterval);
        }
    
        public void test_setUserInfoCacheSize() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

      private static final class UnsafeAtomicHelper extends AtomicHelper {
        static final Unsafe UNSAFE;
        static final long LISTENERS_OFFSET;
        static final long WAITERS_OFFSET;
        static final long VALUE_OFFSET;
        static final long WAITER_THREAD_OFFSET;
        static final long WAITER_NEXT_OFFSET;
    
        static {
          Unsafe unsafe = null;
          try {
            unsafe = Unsafe.getUnsafe();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/SocketInputStream.java

                        return tot;
                    }
                    return -1;
                }
            }
        }
    
        @Override
        public synchronized long skip(final long numbytes) throws IOException {
            if (numbytes <= 0) {
                return 0;
            }
            long n = numbytes;
            while (n > 0) {
                final int r = read(tmp, 0, (int) Math.min(TMP_BUFFER_SIZE, n));
                if (r < 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top