- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 328 for maksimum (2.87 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
* DFS name to enumerate */ public String dfs_name; /** * Information level for enumeration */ public int level; /** * Preferred maximum length of returned data */ public int prefmaxlen; /** * DFS enumeration structure containing results */ public DfsEnumStruct info; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java
this.safeMaxChar = 0; } else { // The safe range is non-empty and contains values below the surrogate // range but may extend above it. We may need to clip the maximum value. this.safeMinChar = (char) safeMin; this.safeMaxChar = (char) min(safeMax, Character.MIN_HIGH_SURROGATE - 1); } } /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 8.5K bytes - Viewed (0) -
docs/en/docs/tutorial/request-files.md
Using `UploadFile` has several advantages over `bytes`: * You don't have to use `File()` in the default value of the parameter. * It uses a "spooled" file: * A file stored in memory up to a maximum size limit, and after passing this limit it will be stored in disk. * This means that it will work well for large files like images, videos, large binaries, etc. without consuming all the memory.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
protected String[] langFields; /** An array of supported languages. */ protected String[] supportedLanguages; /** The language detector. */ protected LanguageDetector detector; /** The maximum text length for language detection. */ protected int maxTextLength; /** * Default constructor. */ public LanguageHelper() { // do nothing } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
* * @param tc * context to use * @param authorityServerName * The hostname of the server that should be queried. For maximum efficiency this should be the hostname * of a domain controller however a member server will work as well and a domain controller may not
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java
class PerformanceTests { @Test @DisplayName("Should handle maximum values without overflow") void testMaximumValues() throws SMBProtocolDecodingException { FileFsFullSizeInformation info = new FileFsFullSizeInformation(); byte[] buffer = new byte[32]; // Set all bytes to 0xFF for maximum values for (int i = 0; i < buffer.length; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
assertEquals(1, negotiationResponse.getSendBufferSize()); assertEquals(1, negotiationResponse.getReceiveBufferSize()); assertEquals(1, negotiationResponse.getTransactionBufferSize()); // Test maximum integer values when(negotiationResponse.getSendBufferSize()).thenReturn(Integer.MAX_VALUE); when(negotiationResponse.getReceiveBufferSize()).thenReturn(Integer.MAX_VALUE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} /** * Sets the maximum retry attempts for configuration synchronization status checks. * * @param maxConfigSyncStatusRetry the maximum retry attempts */ public void setMaxConfigSyncStatusRetry(final int maxConfigSyncStatusRetry) { this.maxConfigSyncStatusRetry = maxConfigSyncStatusRetry; } /** * Sets the maximum retry attempts for search engine status checks.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java
String writtenPath = readStringFromBuffer(buffer, 12, written - 12); assertEquals("\\test\\path with spaces\\*.txt", writtenPath); } @Test @DisplayName("Test with maximum values") void testWithMaximumValues() { trans2FindFirst2 = new Trans2FindFirst2(mockConfig, "\\test", "*.*", 0xFFFF, 65535, Integer.MAX_VALUE); byte[] buffer = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
/** * The minimum value of an ASCII character. * * @since 9.0 (was type {@code int} before 12.0) */ public static final char MIN = 0; /** * The maximum value of an ASCII character. * * @since 9.0 (was type {@code int} before 12.0) */ public static final char MAX = 127; /** A bit mask which selects the bit encoding ASCII character case. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 21.7K bytes - Viewed (0)