Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 481 for 1500 (0.06 sec)

  1. cmd/veeam-sos-api.go

    //     multi-delete operation. The same registry key setting overwrites the storage-defined setting.
    //     Optional value, default 1000, range: 1-unlimited (S3 standard maximum is 1000 and should not be set higher)
    //
    //   - <StorageConcurrentTasksLimit>
    //     Setting reduces the parallel Repository Task slots that offload or write data to object storage. The same user interface
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 15 00:34:56 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        /**
         * Default constructor.
         */
        public FailureUrlPager() {
            // Default constructor
        }
    
        /** URL filter for searching failure URLs. */
        //@Maxbytelength(maxbytelength = 1000)
        public String url;
    
        /** Minimum error count filter for searching failure URLs. */
        //@IntRange(min = 0, max = 2147483647)
        public String errorCountMin;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                ridWithAttribute.rid = 100;
                ridWithAttribute.attributes = 200;
    
                // When: Encoding
                ridWithAttribute.encode(mockNdrBuffer);
    
                // Then: Should encode both fields
                verify(mockNdrBuffer).align(4);
                verify(mockNdrBuffer).enc_ndr_long(100);
                verify(mockNdrBuffer).enc_ndr_long(200);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

            auth1.setAuthenticationTTL(1000);
            assertFalse(auth1.isExpired());
    
            // Test with char[] password constructor
            NtlmPasswordAuthenticator auth2 = new NtlmPasswordAuthenticator("user", "CharPass123!".toCharArray());
            auth2.setAuthenticationTTL(1000);
            assertFalse(auth2.isExpired());
    
            // Test with domain constructor
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/FileConfigTests.java

            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("paths", paths);
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", id);
            requestBody.put("available", true);
            requestBody.put("sort_order", id);
            return requestBody;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/rdma/tcp/TcpMemoryRegion.java

     * ByteBuffers since no real RDMA registration is needed.
     */
    public class TcpMemoryRegion extends RdmaMemoryRegion {
    
        private static final AtomicInteger keyGenerator = new AtomicInteger(1000);
    
        /**
         * Create new TCP memory region
         *
         * @param buffer memory buffer
         * @param access access permissions (ignored for TCP)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java

        private static final int TIMING_ITERATIONS = 1000;
        private static final double TIMING_TOLERANCE = 2.0; // 200% tolerance - JVM timing is inherently variable for timing variations
    
        @BeforeEach
        public void setUp() {
            // Warm up JVM to reduce JIT compilation effects
            for (int i = 0; i < 100; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/pac/PacDataInputStreamTest.java

            Date date = pdis.readFiletime();
            assertNotNull(date);
            // Allow for a small difference due to precision loss
            assertEquals(time / 1000, date.getTime() / 1000);
    
            // Test with null date (0x7fffffff ffffffff)
            byte[] nullData = new byte[] { (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, (byte) 0xff, 0x7f };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

            assertNull(exception.getCause());
        }
    
        public void test_constructor_withLongMessage() {
            // Test with long message
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                sb.append("Long message content ");
            }
            String longMessage = sb.toString();
            ResultOffsetExceededException exception = new ResultOffsetExceededException(longMessage);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java

            offset += 4;
            SMBUtil.writeInt4(4, buffer1, offset); // sectPerAlloc
            offset += 4;
            SMBUtil.writeInt4(1000, buffer1, offset); // alloc
            offset += 4;
            SMBUtil.writeInt4(500, buffer1, offset); // free
            offset += 4;
            SMBUtil.writeInt2(512, buffer1, offset); // bytesPerSect
    
            smbInfoAllocation.decode(buffer1, 0, buffer1.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top