- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for userlength (0.09 sec)
-
cmd/generic-handlers_test.go
} func generateHeader(size, usersize int) http.Header { header := http.Header{} for i := range size { header.Set(strconv.Itoa(i), "") } userlength := 0 for i := 0; userlength < usersize; i++ { userlength += len(userMetadataKeyPrefixes[0] + strconv.Itoa(i)) header.Set(userMetadataKeyPrefixes[0]+strconv.Itoa(i), "") } return header }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
if (userName != null && userName.length() != 0) { user = unicode ? userName.getBytes(UNI_ENCODING) : userName.toUpperCase().getBytes(oem); } final int userLength = user != null ? user.length : 0; final String workstationName = getWorkstation(); byte[] workstation = null; if (workstationName != null && workstationName.length() != 0) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
// test separators work for (int sepLength = 3; sepLength <= 5; sepLength++) { for (String separator : ImmutableList.of(",", "\n", ";;", "")) { testEncoding( encoding.withSeparator(separator, sepLength), decoded, Joiner.on(separator).join(Splitter.fixedLength(sepLength).split(encoded))); } } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
// test separators work for (int sepLength = 3; sepLength <= 5; sepLength++) { for (String separator : ImmutableList.of(",", "\n", ";;", "")) { testEncoding( encoding.withSeparator(separator, sepLength), decoded, Joiner.on(separator).join(Splitter.fixedLength(sepLength).split(encoded))); } } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
ndrBuffer.advance(10); assertEquals(10, ndrBuffer.getLength()); ndrBuffer.setLength(20); assertEquals(20, ndrBuffer.getLength()); // Test with derived buffer NdrBuffer derived = ndrBuffer.derive(0); derived.setLength(5); assertEquals(5, derived.getLength());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
when(tree.send(any(jcifs.internal.Request.class), any(RequestParam.class))).thenReturn(null); raf.setLength(100L); verify(tree, times(1)).send(any(Smb2SetInfoRequest.class), eq(RequestParam.NO_RETRY)); } @Test @DisplayName("setLength(): NT SMBs capability uses Trans2SetFileInformation") void setLength_ntsmbs_usesTrans2() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
int notificationType = buf.dec_ndr_long(); notification.setNotificationType(WitnessEventType.fromValue(notificationType)); // Length int length = buf.dec_ndr_long(); notification.setLength(length); // Number of messages int numberOfMessages = buf.dec_ndr_long(); // Messages array List<WitnessNotificationMessage> messages = new ArrayList<>(numberOfMessages);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/SQLRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
// // LinkedList<IbvSge> sgeList = new LinkedList<>(); // IbvSge sge = new IbvSge(); // sge.setAddr(disniRegion.getAddress()); // sge.setLength(data.remaining()); // sge.setLkey(disniRegion.getLocalKey()); // sgeList.add(sge); // // sendWR.setSg_list(sgeList);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0)