Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 583 for 1000L (0.29 sec)

  1. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

            // Base body part size (up to and including CreateContextsLength)
            byte[] base = buildCreateBodyNoContexts((byte) 1, (byte) 2, 3, 1000L, 2000L, 3000L, 4000L, 512L, 1024L, 0x20, fileId);
    
            // Create a simple context entry
            byte[] ctx = new byte[0x40];
            int ci = 0;
            SMBUtil.writeInt4(0, ctx, ci); // Next = 0 (only one)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2EchoResponseTest.java

                assertEquals(expiration, echoResponse.getExpiration());
            }
    
            @Test
            @DisplayName("Should handle null expiration")
            void testNullExpiration() {
                Long expiration = 1000L;
                echoResponse.setExpiration(expiration);
                assertEquals(expiration, echoResponse.getExpiration());
    
                echoResponse.setExpiration(null);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        }
    
        /** Interval for checking user information in milliseconds (default: 10 minutes). */
        protected long userCheckInterval = 10 * 60 * 1000L; // 10 min
    
        /** Maximum size of the user information cache. */
        protected int userInfoCacheSize = 10000;
    
        /** Queue for storing search logs. */
        protected Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>();
    
        /** Queue for storing click logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java

                request.setData(new byte[100], 0, 100);
                request.setOffset(1000L);
                request.setRemainingBytes(500);
                request.setWriteFlags(0x01);
    
                // Update parameters
                request.setData(new byte[200], 0, 200);
                request.setOffset(2000L);
                request.setRemainingBytes(1000);
                request.setWriteFlags(0x02);
    
                // Update file ID
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            generator1.setCommandList(Collections.singletonList("echo test1"));
            generator2.setCommandList(Collections.singletonList("echo test2"));
    
            generator1.setCommandTimeout(1000L);
            generator2.setCommandTimeout(2000L);
    
            assertTrue("Multiple generators should work independently", true);
        }
    
        // Test command string construction edge cases
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

        // Configurable key rotation limits with defaults
        private volatile long keyRotationBytesLimit = 1L << 30; // Default: 1GB
        private volatile long keyRotationTimeLimit = 24 * 60 * 60 * 1000L; // Default: 24 hours
    
        // Rotation metrics
        private final AtomicLong totalKeyRotations = new AtomicLong(0);
        private final AtomicLong lastKeyRotationTime = new AtomicLong(0);
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

        }
      }
    
      // A heuristic for timed gets. If the remaining timeout is less than this, spin instead of
      // blocking. This value is what AbstractQueuedSynchronizer uses.
      private static final long SPIN_THRESHOLD_NANOS = 1000L;
    
      @VisibleForTesting
      static String atomicHelperTypeForTest() {
        return ATOMIC_HELPER.atomicHelperTypeForTest();
      }
    
      private abstract static class AtomicHelper {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        /** OAuth2 authorization code parameter name. */
        protected static final String CODE = "code";
    
        /** Timeout for token acquisition in milliseconds. */
        protected long acquisitionTimeout = 30 * 1000L;
    
        /** Cache for storing group information to reduce API calls. */
        protected Cache<String, Pair<String[], String[]>> groupCache;
    
        /** Group cache expiry time in seconds. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
  9. docs/smb3-features/03-multi-channel-design.md

        ChannelManager manager = new ChannelManager(context, session);
        
        // Add test channels
        ChannelInfo channel1 = createTestChannel("channel1", 1000);  // 1Gbps
        ChannelInfo channel2 = createTestChannel("channel2", 10000); // 10Gbps
        
        manager.addChannel(channel1);
        manager.addChannel(channel2);
        
        // Test load balancer selection
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

        }
      }
    
      // A heuristic for timed gets. If the remaining timeout is less than this, spin instead of
      // blocking. This value is what AbstractQueuedSynchronizer uses.
      private static final long SPIN_THRESHOLD_NANOS = 1000L;
    
      @VisibleForTesting
      static String atomicHelperTypeForTest() {
        return ATOMIC_HELPER.atomicHelperTypeForTest();
      }
    
      private enum VarHandleAtomicHelperMaker {
        INSTANCE {
          /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
Back to top