- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 378 for positive (0.05 sec)
-
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpRdmaConnection.java
writeBuffer.limit(writeBuffer.position() + bytesToWrite); int totalWritten = 0; while (writeBuffer.hasRemaining()) { int written = socketChannel.write(writeBuffer); totalWritten += written; } // Update original buffer position buffer.position(buffer.position() + totalWritten);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
* printing space backward on the same printing line. (Applicable also to display devices.) * * @since 8.0 */ public static final byte BS = 8; /** * Horizontal Tabulation ('\t'): A format effector which controls the movement of the printing * position to the next in a series of predetermined positions along the printing line.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 21.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EchoResponseTest.java
int[] positions = { 0, 50, 100, 500, 800 }; for (int position : positions) { SMBUtil.writeInt2(4, buffer, position); int result = echoResponse.readBytesWireFormat(buffer, position); assertEquals(0, result, "Failed at position " + position); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
/** * Finds the null termination in a UTF-16LE encoded string buffer. * * @param buffer the byte buffer to search * @param bufferIndex the starting position in the buffer * @param maxLen the maximum length to search * @return position of terminating null bytes */ public static int findUNITermination(final byte[] buffer, final int bufferIndex, final int maxLen) { int len = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
* @param dstIndex the starting position in the buffer * @return number of bytes written */ protected abstract int writeBytesWireFormat(byte[] dst, int dstIndex); /** * Reads the message body from the wire format. * * @param buffer the buffer to read from * @param bufferIndex the starting position in the buffer * @return number of bytes read
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/RuleManager.java
*/ void addRule(Rule rule); /** * Adds a rule to the specified index. * * @param index the position at which the rule should be added * @param rule the rule to be added */ /** * Adds a rule to the specified index. * * @param index the position at which the rule should be added * @param rule the rule to be added */ void addRule(int index, Rule rule);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/hash/AbstractStreamingHasher.java
*/ protected void processRemaining(ByteBuffer bb) { Java8Compatibility.position(bb, bb.limit()); // move at the end Java8Compatibility.limit(bb, chunkSize + 7); // get ready to pad with longs while (bb.position() < chunkSize) { bb.putLong(0); } Java8Compatibility.limit(bb, chunkSize); Java8Compatibility.flip(bb); process(bb); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtCancelTest.java
assertEquals(0, writeParams.invoke(cancel, buffer, position)); // Test write bytes Method writeBytes = SmbComNtCancel.class.getDeclaredMethod("writeBytesWireFormat", byte[].class, int.class); writeBytes.setAccessible(true); assertEquals(0, writeBytes.invoke(cancel, buffer, position)); // Test read parameter words
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
// Fill buffer at position for (int i = 0; i < 37; i++) { buffer[pos + i] = 0x00; } SMBUtil.writeInt4(pos * 10, buffer, pos + 3); // Unique value per position int bytesRead = response.readParameterWordsWireFormat(buffer, pos); assertEquals(37, bytesRead, "Failed at position " + pos);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
private String reading; public TestAnalyzeToken(String term, int position, int startOffset, int endOffset, int positionIncrement, String type, java.util.Map<String, Object> attributes) { super(term, position, startOffset, endOffset, positionIncrement, type, attributes); } public String getReading() { return reading;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0)