- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 369 for OFF (0.72 sec)
-
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
* @param pipeName the name of the pipe to call * @param data the data buffer to write to the pipe * @param off the offset in the data buffer * @param len the length of data to write */ public TransCallNamedPipe(final Configuration config, final String pipeName, final byte[] data, final int off, final int len) { super(config, SMB_COM_TRANSACTION, TRANS_CALL_NAMED_PIPE); this.name = pipeName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java
* @param fid the file ID of the named pipe * @param data the data buffer to send * @param off the offset in the data buffer * @param len the length of data to send */ public TransTransactNamedPipe(final Configuration config, final int fid, final byte[] data, final int off, final int len) { super(config, SMB_COM_TRANSACTION, TRANS_TRANSACT_NAMED_PIPE); this.pipeFid = fid;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/RandomAmountInputStream.java
public RandomAmountInputStream(InputStream in, Random random) { super(checkNotNull(in)); this.random = checkNotNull(random); } @Override public int read(byte[] b, int off, int len) throws IOException { return super.read(b, off, random.nextInt(len) + 1); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
* @param b the byte array to read into * @param off the start offset in the array * @param len the number of bytes to read * @throws IOException if an I/O error occurs */ public void readFully(final byte[] b, final int off, final int len) throws IOException { this.dis.readFully(b, off, len); } /** * Reads a 16-bit character value with proper alignment.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
buildscripts/disable-root.sh
./mc admin user add sitea foobar foo12345 ./mc admin policy attach sitea/ consoleAdmin --user=foobar ./mc admin user info siteb foobar killall -9 minio echo "turning off root access, however site replication must continue" export MINIO_API_ROOT_ACCESS=off minio server --address 127.0.0.1:9001 "http://127.0.0.1:9001/tmp/multisitea/data/disterasure/xl{1...4}" \
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 3.5K bytes - Viewed (0) -
docs/debugging/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashTestUtils.java
assertEquals( hashFunction.hashBytes(bytes), hashFunction.newHasher(size).putBytes(bytes).hash()); int off = random.nextInt(size); int len = random.nextInt(size - off); assertEquals( hashFunction.hashBytes(bytes, off, len), hashFunction.newHasher(size).putBytes(bytes, off, len).hash()); } private static void assertHashByteBufferEquivalence(HashFunction hashFunction, Random random) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbRandomAccess.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/NtlmMessage.java
writeUShort(dest, offset + 2, length); return offset + 4; } static int writeSecurityBufferContent(final byte[] dest, final int pos, final int off, final byte[] src) { writeULong(dest, off, pos); if (src != null && src.length > 0) { System.arraycopy(src, 0, dest, pos, src.length); return src.length; } return 0; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
props.setProperty("bool.yes", "yes"); props.setProperty("bool.no", "no"); props.setProperty("bool.on", "on"); props.setProperty("bool.off", "off"); props.setProperty("bool.1", "1"); props.setProperty("bool.0", "0"); return props; } }; assertTrue(customEnv.is("bool.true"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0)