- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 42 for 0x01000000 (0.17 sec)
-
src/main/java/jcifs/smb/NtStatus.java
public interface NtStatus { /* * Don't bother to edit this. Everything within the interface * block is automatically generated from the ntstatus package. */ public static final int NT_STATUS_OK = 0x00000000; public static final int NT_STATUS_PENDING = 0x00000103; public static final int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C; public static final int NT_STATUS_BUFFER_OVERFLOW = 0x80000005;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 10:09:29 UTC 2019 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
private int negotiatedFlags2; private int maxMpxCount; private int snd_buf_size; private int recv_buf_size; private int tx_buf_size; private int capabilities; private int sessionKey = 0x00000000; private boolean useUnicode; /** * * @param ctx */ public SmbComNegotiateResponse ( CIFSContext ctx ) { super(ctx.getConfig());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
FMOVS F1, 0x1003000(R2) // FMOVS F1, 16789504(R2) FMOVS F1, 0x44332211(R2) // FMOVS F1, 1144201745(R2) FMOVD F1, 0x1007000(R2) // FMOVD F1, 16805888(R2) FMOVD F1, 0x44332211(R2) // FMOVD F1, 1144201745(R2) MOVB 0x1000000(R1), R2 // MOVB 16777216(R1), R2 MOVB 0x44332211(R1), R2 // MOVB 1144201745(R1), R2 MOVH 0x1000000(R1), R2 // MOVH 16777216(R1), R2 MOVH 0x44332211(R1), R2 // MOVH 1144201745(R1), R2
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jul 24 18:45:14 UTC 2024 - 95.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
public interface NtStatus { /* Don't bother to edit this. Everthing within the interface * block is automatically generated from the ntstatus package. */ public static final int NT_STATUS_OK = 0x00000000; public static final int NT_STATUS_UNSUCCESSFUL = 0xC0000001; public static final int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002; public static final int NT_STATUS_INVALID_INFO_CLASS = 0xC0000003;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.1K bytes - Viewed (0) -
docs/features/https.md
Failure in SSL library, usually a protocol error error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure (external/openssl/ssl/s23_clnt.c:770 0x7f2728a53ea0:0x00000000) at com.android.org.conscrypt.NativeCrypto.SSL_do_handshake(Native Method) ``` You can check a web server's configuration using [Qualys SSL Labs][qualys]. OkHttp's TLS
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
int flags2 = FLAGS2; int maxMpxCount = MAX_MPX_COUNT; int snd_buf_size = SND_BUF_SIZE; int rcv_buf_size = RCV_BUF_SIZE; int capabilities = CAPABILITIES; int sessionKey = 0x00000000; boolean useUnicode = USE_UNICODE; String tconHostName = null; SmbTransport( UniAddress address, int port, InetAddress localAddr, int localPort ) { this.address = address;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt
assertThat(frame.exhausted()).isTrue() } @Test fun tooLargeDataFrame() { assertFailsWith<IllegalArgumentException> { sendDataFrame(Buffer().write(ByteArray(0x1000000))) }.also { expected -> assertThat(expected.message).isEqualTo("FRAME_SIZE_ERROR length > 16384: 16777216") } } @Test fun windowUpdateRoundTrip() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 28.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/operand_test.go
} var x86OperandTests = []operandTest{ {"$(2.928932188134524e-01)", "$(0.29289321881345243)"}, {"$-1", "$-1"}, {"$0", "$0"}, {"$0x00000000", "$0"}, {"$runtime·badmcall(SB)", "$runtime.badmcall(SB)"}, {"$setg_gcc<>(SB)", "$setg_gcc<>(SB)"}, {"$~15", "$-16"}, {"(-64*1024+104)(SP)", "-65432(SP)"}, {"(0*4)(BP)", "(BP)"}, {"(1*4)(DI)", "4(DI)"},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlTest.kt
@Test fun hostIpv6AddressTooManyLeadingZeros() { // Guava's been buggy on this case. https://github.com/google/guava/issues/3116 assertInvalid( "http://[2001:db8:0:0:1:0:0:00001]", "Invalid URL host: \"[2001:db8:0:0:1:0:0:00001]\"", ) } @Test fun hostIpv6WithIpv4Suffix() { assertThat(parse("http://[::1:255.255.255.255]/").host) .isEqualTo("::1:ffff:ffff")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 67.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CookieTest.kt
} @Test fun builderExpiresAt() { val cookie = Cookie.Builder() .name("a") .value("b") .hostOnlyDomain("example.com") .expiresAt(date("1970-01-01T00:00:01.000+0000").time) .build() assertThat(cookie.toString()).isEqualTo("a=b; expires=Thu, 01 Jan 1970 00:00:01 GMT; path=/") } @Test fun builderClampsMinDate() { val cookie = Cookie.Builder()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 24.3K bytes - Viewed (0)