- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 192 for 1024 (0.03 sec)
-
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
authMethod = null; InputStream errorStream = connection.getErrorStream(); if (errorStream != null && errorStream.available() != 0) { int count; byte[] buf = new byte[1024]; while ((count = errorStream.read(buf, 0, 1024)) != -1); } String authHeader; if (response == HTTP_UNAUTHORIZED) { authHeader = "WWW-Authenticate";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
src/archive/zip/zip_test.go
func generatesZip64(t *testing.T, f func(w *Writer)) bool { ss := &suffixSaver{keep: 10 << 20} w := NewWriter(ss) f(w) return suffixIsZip64(t, ss) } type sizedReaderAt interface { io.ReaderAt Size() int64 } func suffixIsZip64(t *testing.T, zip sizedReaderAt) bool { d := make([]byte, 1024) if _, err := zip.ReadAt(d, zip.Size()-int64(len(d))); err != nil { t.Fatalf("ReadAt: %v", err)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu May 23 01:00:11 UTC 2024 - 19.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/ReadWriteTest.java
@Test public void testLargeBufSmallWrite () throws IOException { try ( SmbFile f = createTestFile() ) { try { int bufSize = 65535; long length = 1024; try ( OutputStream os = f.getOutputStream() ) { writeRandom(bufSize, length, os); } try ( InputStream is = f.getInputStream() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
static final int DEFAULT_SO_TIMEOUT = 35000; static final int DEFAULT_RCV_BUF_SIZE = 0xFFFF; static final int DEFAULT_SND_BUF_SIZE = 0xFFFF; static final int DEFAULT_NOTIFY_BUF_SIZE = 1024; static final int DEFAULT_SSN_LIMIT = 250; static final int DEFAULT_CONN_TIMEOUT = 35000; static final int FLAGS_NONE = 0x00; static final int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.9K bytes - Viewed (0) -
api/go1.4.txt
pkg debug/elf, const R_AARCH64_CALL26 R_AARCH64 pkg debug/elf, const R_AARCH64_CONDBR19 = 280 pkg debug/elf, const R_AARCH64_CONDBR19 R_AARCH64 pkg debug/elf, const R_AARCH64_COPY = 1024 pkg debug/elf, const R_AARCH64_COPY R_AARCH64 pkg debug/elf, const R_AARCH64_GLOB_DAT = 1025 pkg debug/elf, const R_AARCH64_GLOB_DAT R_AARCH64 pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 = 309 pkg debug/elf, const R_AARCH64_GOT_LD_PREL19 R_AARCH64
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 12 03:01:01 UTC 2014 - 34K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
} public Model interpolate(Model model, File projectDir, ProjectBuilderConfiguration config, boolean debugEnabled) throws ModelInterpolationException { StringWriter sWriter = new StringWriter(1024); MavenStaxWriter writer = new MavenStaxWriter(); try { writer.write(sWriter, model.getDelegate()); } catch (IOException | XMLStreamException e) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0) -
internal/ringbuffer/ring_buffer_test.go
} if rb.Free() != 64 { t.Fatalf("expect free 64 bytes but got %d. r.w=%d, r.r=%d", rb.Free(), rb.w, rb.r) } // read empty buf := make([]byte, 1024) n, err := rb.Read(buf) if err == nil { t.Fatalf("expect an error but got nil") } if err != ErrIsEmpty { t.Fatalf("expect ErrIsEmpty but got nil") } if n != 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 15 00:11:04 UTC 2024 - 26.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
super(config, command); this.subCommand = subCommand; this.maxDataCount = config.getTransactionBufferSize() - 512; this.maxParameterCount = 1024; this.primarySetupOffset = PRIMARY_SETUP_OFFSET; this.secondaryParameterOffset = SECONDARY_PARAMETER_OFFSET; } /** * @param maxBufferSize
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 13:43:42 UTC 2020 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
public static final int ACB_DOMTRUST = 64; public static final int ACB_WSTRUST = 128; public static final int ACB_SVRTRUST = 256; public static final int ACB_PWNOEXP = 512; public static final int ACB_AUTOLOCK = 1024; public static final int ACB_ENC_TXT_PWD_ALLOWED = 2048; public static final int ACB_SMARTCARD_REQUIRED = 4096; public static final int ACB_TRUSTED_FOR_DELEGATION = 8192;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Oct 23 13:27:21 UTC 2024 - 18.6K bytes - Viewed (0)