- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for 230 (0.01 sec)
-
src/test/java/jcifs/smb1/smb1/WinErrorTest.java
} @Test void knownErrorCodes() { assertEquals(71, WinError.ERROR_REQ_NOT_ACCEP, "ERROR_REQ_NOT_ACCEP expected 71"); assertEquals(230, WinError.ERROR_BAD_PIPE, "ERROR_BAD_PIPE expected 230"); assertEquals(6118, WinError.ERROR_NO_BROWSER_SERVERS_FOUND, "ERROR_NO_BROWSER_SERVERS_FOUND expected 6118"); } } @Nested @DisplayName("Array content checks")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
* * <p>As of Guava 23.0, this class is thread-safe and lock-free. It internally uses atomics and * compare-and-swap to ensure correctness when multiple threads are used to access it. * * @param <T> the type of instances that the {@code BloomFilter} accepts * @author Dimitris Andreou * @author Kevin Bourrillion * @since 11.0 (thread-safe since 23.0) */ @Beta
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 26.9K bytes - Viewed (0) -
cmd/endpoint-ellipses_test.go
{ Prefix: "", Suffix: "", Seq: getSequences(1, 64, 0), }, { Prefix: "http://minio", Suffix: "/export/set", Seq: getSequences(2, 3, 0), }, }, }, nil, [][]uint64{{16, 16, 16, 16, 16, 16, 16, 16}}, }, true, }, // Supporting some advanced cases. { "http://minio{1...64}.mydomain.net/data",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.1K bytes - Viewed (0) -
guava/src/com/google/common/graph/Network.java
* to {@code nodeV} * @throws IllegalArgumentException if {@code nodeU} or {@code nodeV} is not an element of this * network * @since 23.0 */ Optional<E> edgeConnecting(N nodeU, N nodeV); /** * Returns the single edge that directly connects {@code endpoints} (in the order, if any,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:03:02 UTC 2025 - 22.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/WinError.java
/** Access is denied */ int ERROR_ACCESS_DENIED = 5; /** No more connections can be made to this remote computer */ int ERROR_REQ_NOT_ACCEP = 71; /** The pipe state is invalid */ int ERROR_BAD_PIPE = 230; /** All pipe instances are busy */ int ERROR_PIPE_BUSY = 231; /** The pipe is being closed */ int ERROR_NO_DATA = 232; /** No process is on the other end of the pipe */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/WinError.java
/** Access is denied */ int ERROR_ACCESS_DENIED = 5; /** No more connections can be made to this remote computer */ int ERROR_REQ_NOT_ACCEP = 71; /** The pipe state is invalid */ int ERROR_BAD_PIPE = 230; /** All pipe instances are busy */ int ERROR_PIPE_BUSY = 231; /** The pipe is being closed */ int ERROR_NO_DATA = 232; /** No process is on the other end of the pipe */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
go.mod
github.com/go-openapi/analysis v0.23.0 // indirect github.com/go-openapi/errors v0.22.1 // indirect github.com/go-openapi/jsonpointer v0.21.1 // indirect github.com/go-openapi/jsonreference v0.21.0 // indirect github.com/go-openapi/runtime v0.28.0 // indirect github.com/go-openapi/spec v0.21.0 // indirect github.com/go-openapi/strfmt v0.23.0 // indirect github.com/go-openapi/swag v0.23.1 // indirect
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:33:19 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/WinErrorTest.java
assertAll(() -> assertEquals(0, WinError.ERROR_SUCCESS), () -> assertEquals(5, WinError.ERROR_ACCESS_DENIED), () -> assertEquals(71, WinError.ERROR_REQ_NOT_ACCEP), () -> assertEquals(230, WinError.ERROR_BAD_PIPE), () -> assertEquals(231, WinError.ERROR_PIPE_BUSY), () -> assertEquals(232, WinError.ERROR_NO_DATA),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
do { final int octet = s.read(); if (octet < 0) { throw new EOFException("EOF found reading length"); } if (length >>> 23 != 0) { throw new IOException("long form definite-length more than 31 bits"); } length = (length << 8) + octet; } while (++octetsPos < octetsCount);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
securityDescriptorBytes[20] = 2; // ACL revision securityDescriptorBytes[21] = 0; // sbz1 securityDescriptorBytes[22] = 8; // ACL size (low byte) securityDescriptorBytes[23] = 0; // ACL size (high byte) securityDescriptorBytes[24] = 0; // ACE count (low byte) - 0 ACEs securityDescriptorBytes[25] = 0; // ACE count (high byte) securityDescriptorBytes[26] = 0; // sbz2 (low byte)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0)