- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for 2621440 (4.23 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. */ String HTTP_PROXY_PASSWORD = "http.proxy.password"; /** The key of the configuration. e.g. 262144000 */ String HTTP_FILEUPLOAD_MAX_SIZE = "http.fileupload.max.size"; /** The key of the configuration. e.g. 262144 */ String HTTP_FILEUPLOAD_THRESHOLD_SIZE = "http.fileupload.threshold.size"; /** The key of the configuration. e.g. 10 */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/main/resources/fess_config.properties
http.proxy.username= # Password for HTTP proxy authentication. http.proxy.password= # Maximum size (bytes) for HTTP file uploads. http.fileupload.max.size=262144000 # Threshold size (bytes) for HTTP file upload buffering. http.fileupload.threshold.size=262144 # Maximum number of files allowed per HTTP upload. http.fileupload.max.file.count=10
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java
void shouldHandleQuotaRestrictedScenarios() throws SMBProtocolDecodingException { // Given - quota restricts caller available units long totalClusters = 26214400L; // 100GB / 4KB long callerAvailable = 2621440L; // 10GB / 4KB (quota limit) long actualFree = 13107200L; // 50GB / 4KB (actual free) ByteBuffer buffer = ByteBuffer.allocate(32);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
void shouldHandleTypicalNTFSConfiguration() throws SMBProtocolDecodingException { // Given - typical NTFS: 4KB clusters (8 sectors * 512 bytes) long totalClusters = 26214400L; // 100GB / 4KB long freeClusters = 13107200L; // 50GB / 4KB ByteBuffer buffer = ByteBuffer.allocate(24); buffer.order(ByteOrder.LITTLE_ENDIAN);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
int bytesDecoded = response.decode(buffer, 0, buffer.length); assertEquals(12, bytesDecoded); assertEquals(32, response.getChunksWritten()); assertEquals(262144, response.getChunkBytesWritten()); // 256KB chunks assertEquals(8388608, response.getTotalBytesWritten()); // 8MB total } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0)