- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 52 for compression (0.25 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
public static final int FILE_OPEN_BY_FILE_ID = 0x2000; /** * The file is being opened for backup intent */ public static final int FILE_OPEN_FOR_BACKUP_INTENT = 0x4000; /** * Disable compression on the file */ public static final int FILE_NO_COMPRESSION = 0x8000; /** * The file is being opened and an oplock is being requested as an atomic operation */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
* addresses, the output follows <a href="http://tools.ietf.org/html/rfc5952">RFC 5952</a> section * 4. The main difference is that this method uses "::" for zero compression, while Java's version * uses the uncompressed form (except on Android, where the zero compression is also done). The * other difference is that this method outputs any scope ID in the format that it was provided at
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
logger.debug("Failed to decode {}", hash, e); } } } return hash; } /** * Encodes a similar document hash using GZIP compression and Base64 encoding. * This reduces storage space for hash values while maintaining uniqueness. * * @param hash the hash string to encode
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* @since 2.2 */ boolean isAES256Enabled(); /** * Property {@code jcifs.smb.client.compressionEnabled} (boolean, default false) * * @return whether SMB3 compression is enabled */ boolean isCompressionEnabled(); /** * * Property {@code jcifs.smb.client.forceExtendedSecurity} (boolean, default false) *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
random = SecureRandom(), pingIntervalMillis = 0, extensions = WebSocketExtensions.parse(webSocketResponse.headers), // Compress all messages if compression is enabled. minimumDeflateSize = 0L, webSocketCloseTimeout = RealWebSocket.CANCEL_AFTER_CLOSE_MILLIS, ) val name = "MockWebServer WebSocket ${request.url.encodedPath}"
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 40.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Whether to enforce signing for IPC connections */ protected boolean ipcSigningEnforced = true; /** Whether SMB3 encryption is enabled */ protected boolean encryptionEnabled = false; /** Whether SMB3 compression is enabled */ protected boolean compressionEnabled = false; /** Preferred encryption ciphers in order of preference */ protected String preferredCiphers = "AES_128_GCM,AES_128_CCM,AES_256_GCM,AES_256_CCM";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
CHANGELOG.md
* New: `Cache` now has a public constructor that takes an [okio.FileSystem]. This should make it possible to implement decorators for cache encryption or compression. * New: `Cookie.newBuilder()` to build upon an existing cookie. * New: Use TLSv1.3 when running on JDK 8u261 or newer. * New: `QueueDispatcher.clear()` may be used to reset a MockWebServer instance.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt
webSocketCloseTimeout = checkDuration("duration", duration) } /** * Sets minimum outbound web socket message size (in bytes) that will be compressed. * * Set to 0 to enable compression for all outbound messages. * * 1024 by default. */ fun minWebSocketMessageToCompress(bytes: Long) = apply { require(bytes >= 0) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 51.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.26.md
- Added `--disable-compression` flag to `kubectl` (default = false). When true, it opts out of response compression for all requests to the `apiserver`. This can help improve list call latencies significantly when client-server network bandwidth is ample (>30MB/s) or if the server is CPU-constrained. ([#112580](http...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Mar 14 16:24:51 UTC 2024 - 425.7K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
Previously disabling cleartext for any host would disable cleartext for all hosts. Note that this setting is only available on Android 24+. * New: HPACK compression is now dynamic. This should improve performance when transmitting request headers over HTTP/2. * New: `Dispatcher.setIdleCallback()` can be used to signal when there are no
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0)