Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 492 for larger (0.08 sec)

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

                    ErrorCategory.PROTOCOL, false), INVALID_PROTOCOL("Invalid protocol", ErrorCategory.PROTOCOL,
                            false), MESSAGE_TOO_LARGE("Message too large", ErrorCategory.PROTOCOL, false),
    
            // Resource errors
            OUT_OF_MEMORY("Out of memory", ErrorCategory.RESOURCE, true), TOO_MANY_SESSIONS("Too many sessions", ErrorCategory.RESOURCE,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. docs/smb3-features/03-multi-channel-design.md

        private ChannelInfo selectAdaptive(SMBMessage message, Collection<ChannelInfo> channels) {
            // Adaptive strategy based on message type and size
            
            if (isLargeTransfer(message)) {
                // For large transfers, prefer high-bandwidth channels
                return channels.stream()
                    .max(Comparator.comparingInt(c -> c.getRemoteInterface().getLinkSpeed()))
                    .orElseThrow();
            }
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

                    if (params != null && params.size() > 100) {
                        return createMockRescorerBuilder();
                    }
                    return null;
                }
            };
    
            // Test with large number of parameters
            Map<String, Object> largeParams = new HashMap<>();
            for (int i = 0; i < 150; i++) {
                largeParams.put("key" + i, "value" + i);
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/index.jsp

    									<a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a>
    								</li>
    							</c:if>
    							<c:if test="${developmentMode}">
    								<li class="nav-item" data-bs-toggle="tooltip" data-placement="left"
    									title="<la:message key="labels.development_mode_warning" />"
    								><a class="nav-link active" href="${installationLink}" target="_olh"><em
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

            thumbnailManager.setExceptionMessage(null);
    
            String result = purgeThumbnailJob.execute();
    
            assertTrue(result.contains("Test exception"));
        }
    
        // Test execute with large number of deleted files
        public void test_execute_largeNumberOfFiles() {
            thumbnailManager.setPurgeCallCount(Long.MAX_VALUE);
    
            String result = purgeThumbnailJob.execute();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

            .addEqualityGroup(isNull)
            .addEqualityGroup(Equivalence.identity().equivalentTo("1"))
            .testEquals();
      }
    
      /*
       * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using
       * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer`
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/EquivalenceTest.java

            .addEqualityGroup(isNull)
            .addEqualityGroup(Equivalence.identity().equivalentTo("1"))
            .testEquals();
      }
    
      /*
       * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using
       * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer`
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/NullnessCasts.java

       * typically useful for {@code return} statements. That leaves the code with two options: Either
       * add the suppression to the whole method (which turns off checking for a large section of code),
       * or extract a variable, and put the suppression on that. However, a local variable typically
       * doesn't work: Because nullness analyses typically infer the nullness of local variables,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 20:49:47 UTC 2025
    - 4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java

            FileBothDirectoryInfo result = (FileBothDirectoryInfo) createFileInfoMethod.invoke(response);
    
            assertNull(result);
        }
    
        @Test
        @DisplayName("Test readBytesWireFormat handles large buffer offset correctly")
        void testReadBytesWireFormatLargeBufferOffset() throws Exception {
            response = new Smb2QueryDirectoryResponse(mockConfig, Smb2QueryDirectoryRequest.FILE_BOTH_DIRECTORY_INFO);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/ntlmssp/av/AvPairsTest.java

        }
    
        /**
         * Test edge case with maximum data size
         */
        @Test
        @DisplayName("Handle large data size")
        void testLargeDataSize() throws CIFSException {
            // Create a large data array
            byte[] largeData = new byte[1024];
            Arrays.fill(largeData, (byte) 0xFF);
    
            byte[] avPairData = createAvPairData(0x99, largeData);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top