- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 3,853 for Hint (0.04 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java
} @Override protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override protected int readParameterWordsWireFormat ( byte[] buffer, int bufferIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
} override fun getLocalPort(): Int { return delegate!!.localPort } @Throws(IOException::class) override fun getOutputStream(): OutputStream { return delegate!!.outputStream } override fun getPort(): Int { return delegate!!.port } @Throws(SocketException::class) override fun getSoLinger(): Int { return delegate!!.soLinger }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/SmbInfoAllocation.java
} /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @Override public int decode ( byte[] buffer, int bufferIndex, int len ) throws SMBProtocolDecodingException { int start = bufferIndex; bufferIndex += 4; // skip idFileSystem this.sectPerAlloc = SMBUtil.readInt4(buffer, bufferIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotification.java
*/ @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { return 0; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#readBytesWireFormat(byte[], int) */ @Override protected int readBytesWireFormat ( byte[] buffer, int bufferIndex ) throws SMBProtocolDecodingException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
return 0; } int[] result = new int[1]; // used as a mutable int reference to hold result AvlNode<E> newRoot = root.add(comparator(), element, occurrences, result); rootReference.checkAndSet(root, newRoot); return result[0]; } @CanIgnoreReturnValue @Override public int remove(@CheckForNull Object element, int occurrences) { checkNonnegative(occurrences, "occurrences");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 34.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java
int fid, fileAttributes, dataSize, grantedAccess, fileType, deviceState, action, serverFid; long lastWriteTime; SmbComOpenAndXResponse() { } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeBytesWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComDelete.java
} @Override protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) { SMBUtil.writeInt2(this.searchAttributes, dst, dstIndex); return 2; } @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; dst[ dstIndex++ ] = (byte) 0x04;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComQueryInformation.java
command = SMB_COM_QUERY_INFORMATION; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeBytesWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; dst[dstIndex++] = (byte)0x04; dstIndex += writeString( path, dst, dstIndex ); return dstIndex - start; } int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
return this; } public int getFragmentSize() { return fragmentSize; } public HighlightInfo fragmentSize(final int fragmentSize) { this.fragmentSize = fragmentSize; return this; } public int getNumOfFragments() { return numOfFragments; } public HighlightInfo numOfFragments(final int numOfFragments) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
* @throws IOException */ public static byte[] readUnparsedTagged(int expectTag, int limit, ASN1InputStream in) throws IOException { int ftag = in.read(); int tag = readTagNumber(in, ftag); if ( tag != expectTag ) { throw new IOException("Unexpected tag " + tag); } int length = readLength(in, limit, false); byte[] content = new byte[length];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 6.5K bytes - Viewed (0)