- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 65 for strength (0.05 sec)
-
android/guava-tests/test/com/google/common/base/Utf8Test.java
Integer[] codePoints = utf8Lengths.keySet().toArray(new Integer[] {}); StringBuilder sb = new StringBuilder(); Random rnd = new Random(); for (int trial = 0; trial < 100; trial++) { sb.setLength(0); int utf8Length = 0; for (int i = 0; i < 6; i++) { Integer randomCodePoint = codePoints[rnd.nextInt(codePoints.length)]; sb.appendCodePoint(randomCodePoint);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
public int getLength() { return this.deferred.length; } /** * Sets the length of data in the buffer. * * @param length the new data length */ public void setLength(final int length) { this.deferred.length = length; } /** * Advances the buffer index by the specified number of bytes. * * @param n the number of bytes to advance */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache2/Relay.kt
val result = Relay(randomAccessFile, upstream, 0L, metadata, bufferMaxSize) // Write a dirty header. That way if we crash we won't attempt to recover this. randomAccessFile.setLength(0L) result.writeHeader(PREFIX_DIRTY, -1L, -1L) return result } /** * Creates a relay that reads a recorded stream from [file]. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 17:15:47 UTC 2025 - 11.8K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
try { Smb2ReadRequest request = new Smb2ReadRequest(); request.setFileId(this.fileId); request.setOffset(offset + chunkOffset); request.setLength(chunkLength); Smb2ReadResponse response = (Smb2ReadResponse) channel.getTransport().send(request);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
* @param fbuf * @throws DcerpcException */ private void setupReceivedFragment(final NdrBuffer fbuf) throws DcerpcException { fbuf.reset(); fbuf.setIndex(8); fbuf.setLength(fbuf.dec_ndr_short()); if (this.securityProvider != null) { this.securityProvider.unwrap(fbuf); } } /** * Encode a DCE/RPC message for transmission *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
regexQueries[i] = Pattern.quote(queries[i]); hlQueries[i] = highlightTagPre + queries[i] + highlightTagPost; } while (m.find()) { segBuf.setLength(0); m.appendReplacement(segBuf, StringUtil.EMPTY); String segment = segBuf.toString(); for (int i = 0; i < queries.length; i++) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
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 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
StringBuilder sb = stringBuilderPool.poll(); if (sb == null) { sb = new StringBuilder(512); // Pre-allocate reasonable size } else { sb.setLength(0); // Reset length } return sb; } private void returnStringBuilder(StringBuilder sb) { if (sb != null && sb.capacity() < 2048) { // Avoid keeping very large builders
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0)