- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 2,033 for allt (0.02 sec)
-
cmd/xl-storage-format-utils.go
package cmd import ( "errors" "github.com/zeebo/xxh3" ) // getFileInfoVersions partitions this object's versions such that, // - fivs.Versions has all the non-free versions // - fivs.FreeVersions has all the free versions // // if inclFreeVersions is true all the versions are in fivs.Versions, free and non-free versions alike. //
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/compression/README.md
> [!NOTE] > To enable compression for all content when using environment variables, set either or both of the extensions and MIME types to `*` instead of an empty string: > ```bash > export MINIO_COMPRESSION_ENABLE="on" > export MINIO_COMPRESSION_EXTENSIONS="*" > export MINIO_COMPRESSION_MIME_TYPES="*" > ``` ### 3. Compression + Encryption Combining encryption and compression is not safe in all setups.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 5.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/WebSocket.kt
* state indicates that a peer has sent all of its outgoing messages and received all of its * incoming messages. But it does not guarantee that the other peer will successfully receive all of * its incoming messages. */ interface WebSocket { /** Returns the original request that initiated this web socket. */ fun request(): Request /** * Returns the size in bytes of all messages enqueued to be transmitted to the server. This
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.3K bytes - Viewed (0) -
docs/en/docs/tutorial/security/index.md
In many frameworks and systems just handling security and authentication takes a big amount of effort and code (in many cases it can be 50% or more of all the code written). **FastAPI** provides several tools to help you deal with **Security** easily, rapidly, in a standard way, without having to study and learn all the security specifications. But first, let's check some small concepts. ## In a hurry? { #in-a-hurry }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
/** * Creates a new DuplicateHostPager with default values. * Initializes pagination settings and clears all search parameters. */ public DuplicateHostPager() { // Default constructor with explicit documentation } /** * Clears all paging state and search/filter parameters. * Resets the pager to its initial state with default values. */ public void clear() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; /** * Test class for Smb2Constants * Tests all SMB2 protocol constants and their expected values */ @DisplayName("Smb2Constants Test Suite") class Smb2ConstantsTest { @Test @DisplayName("Should have private constructor to prevent instantiation")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvRequestResumeKeyResponseTest.java
assertNull(response.getResumeKey(), "Resume key should be null before decode"); } @Test @DisplayName("Test decode with all zero bytes") void testDecodeWithAllZeroBytes() throws SMBProtocolDecodingException { byte[] buffer = new byte[28]; // All bytes are already 0 int bytesConsumed = response.decode(buffer, 0, 28);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactLinkedHashSet.java
/** * CompactLinkedHashSet is an implementation of a Set, which a predictable iteration order that * matches the insertion order. All optional operations (adding and removing) are supported. All * elements, including {@code null}, are permitted. * * <p>{@code contains(x)}, {@code add(x)} and {@code remove(x)}, are all (expected and amortized) * constant time operations. Expected in the hashtable sense (depends on the hash function doing a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 14:59:07 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcErrorTest.java
assertEquals(0x1c01000b, DcerpcError.DCERPC_FAULT_PROTO_ERROR); } @Test @DisplayName("Should verify all fault code constants are unique") void testFaultCodesUniqueness() { Set<Integer> faultCodes = new HashSet<>(); // Add all fault codes to a set to check uniqueness faultCodes.add(DcerpcError.DCERPC_FAULT_OTHER);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComCloseTest.java
import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; import org.mockito.junit.jupiter.MockitoExtension; /** * Tests for {@link SmbComClose}. * <p> * All tests are written in the same package as the class under test so * that package-private fields and constants can be accessed directly. */ @ExtendWith(MockitoExtension.class) class SmbComCloseTest { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.8K bytes - Viewed (0)