- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 256 for setters (0.27 sec)
-
CHANGELOG.md
This release stabilizes many APIs for the imminent OkHttp 5.0.0 release. * New: `TrailersSource`, a public API for HTTP trailers. Production callers shouldn't need this as the API to read response trailers is unchanged. Testers may use this new stable API to supply trailers for a `Response`. * New: `Path.asRequestBody()` is now a non-experimental API. * New: `FileDescriptor.toRequestBody()` is now a non-experimental API.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
super(config); this.extended = extended; this.fileType = fileType; } // Use setter methods to configure extended and fileType in parent class public void configureForTest(boolean extended, int fileType) { setExtended(extended); this.fileType = fileType; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
this.useNTSmbs = th.hasCapability(SmbConstants.CAP_NT_SMBS); if (!this.useNTSmbs) { log.debug("No support for NT SMBs"); } // there seems to be a bug with some servers that causes corruption if using signatures + // CAP_LARGE_WRITE if (th.hasCapability(SmbConstants.CAP_LARGE_WRITEX) && !th.areSignaturesActive()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
Math.min(th.getConfig().getReceiveBufferSize() - 70, th.areSignaturesActive() ? 0xFFFF - 70 : 0xFFFFFF - 70); } // there seems to be a bug with some servers that causes corruption if using signatures + CAP_LARGE_WRITE if (th.hasCapability(SmbConstants.CAP_LARGE_WRITEX) && !th.areSignaturesActive()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
cmd/utils.go
xfixl := len(xfix) strl := len(str) // short-circuit empty strings if xfixl == 0 || strl == 0 { return "" } // maximum possible length maxl := min(strl, xfixl) // compare letters if pre { // prefix, iterate left to right for i := range maxl { if xfix[i] != str[i] { xfix = xfix[:i] break } } } else { // suffix, iterate right to left
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 33K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java
byte[] buffer = new byte[22]; int idFileSystem = 0x22222222; int sectPerAlloc = 8; long alloc = 10000L; long free = 5000L; int bytesPerSect = 32768; // 32KB sectors // Encode test data int offset = 0; SMBUtil.writeInt4(idFileSystem, buffer, offset); offset += 4; SMBUtil.writeInt4(sectPerAlloc, buffer, offset); offset += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
license: name: Apache 2.0 url: http://www.apache.org/licenses/LICENSE-2.0.html version: 14.8.0 externalDocs: description: API Documentation url: https://fess.codelibs.org/14.8/api/ servers: - url: http://localhost:8080/api/v1 tags: - name: search description: Search operations - name: popularword description: Popular word operations - name: monitor
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
docs/sts/web-identity.md
example.org`. This will ensure that the redirect URL is set to `https://console.minio.example.org/oauth_callback` and the login process should work correctly. For deployments employing DNS round-robin on a single domain to all the MinIO servers, it is possible that after redirection the browser may land on a different MinIO server. For example, the domain `console.minio.example.org` may resolve to `console-X.minio.example.org`, where `X` is `1`, `2`, `3` or `4`. For the login to work, if...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
sulkily remarked, `If you can't be civil, you'd better finish the story for yourself.' `No, please go on!' Alice said very humbly; `I won't interrupt again. I dare say there may be ONE.' `One, indeed!' said the Dormouse indignantly. However, he consented to go on. `And so these three little sisters--they were learning to draw, you know--'
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 145.2K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
assertSame(broadcastAddr, resultBroadcastAddr, "Should delegate broadcast address"); assertSame(winsServers, resultWinsServers, "Should delegate WINS servers"); assertEquals(445, resultLocalPort, "Should delegate local port"); verify(mockDelegate).getLocalAddr(); verify(mockDelegate).getBroadcastAddress();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0)