- Sort Score
- Result 10 results
- Languages All
Results 871 - 880 of 1,523 for byteEq (0.08 sec)
-
src/main/java/jcifs/ntlmssp/Type1Message.java
this.suppliedWorkstation = suppliedWorkstation; } @Override public byte[] toByteArray () { try { int flags = getFlags(); int size = 8 * 4 + ( ( flags & NTLMSSP_NEGOTIATE_VERSION ) != 0 ? 8 : 0 ); byte[] domain = new byte[0]; String suppliedDomainString = getSuppliedDomain();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 02 12:55:08 UTC 2018 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
} /** * {@literal byte}配列の末尾に{@literal byte}の値を追加した配列を返します。 * * @param array * 配列 * @param value * 値 * @return 値が追加された結果の配列 */ public static byte[] add(final byte[] array, final byte value) { assertArgumentNotNull("array", array); final byte[] newArray = (byte[]) Array.newInstance(byte.class, array.length + 1);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 42.6K bytes - Viewed (0) -
docs/de/docs/advanced/custom-response.md
```Python hl_lines="1 18" {!../../docs_src/response_directly/tutorial002.py!} ``` ### `HTMLResponse` Nimmt Text oder Bytes entgegen und gibt eine HTML-Response zurück, wie Sie oben gelesen haben. ### `PlainTextResponse` Nimmt Text oder Bytes entgegen und gibt eine Plain-Text-Response zurück. ```Python hl_lines="2 7 9" {!../../docs_src/custom_response/tutorial005.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.5K bytes - Viewed (0) -
cmd/server-main.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "bytes" "context" "encoding/hex" "errors" "fmt" "io" "log" "math/rand" "net" "os" "os/signal" "path/filepath" "runtime" "strings" "syscall" "time"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 35.2K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb2/lock/Smb2LockResponse.java
*/ @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { return 0; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#readBytesWireFormat(byte[], int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComFindClose2.java
} int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { writeInt2( sid, dst, dstIndex ); return 2; } int writeBytesWireFormat( byte[] dst, int dstIndex ) { return 0; } int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) { return 0; } int readBytesWireFormat( byte[] buffer, int bufferIndex ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteResponse.java
*/ @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { return 0; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#readBytesWireFormat(byte[], int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameQueryResponse.java
} @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override int readBodyWireFormat ( byte[] src, int srcIndex ) { return readResourceRecordWireFormat(src, srcIndex); } @Override int writeRDataWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiation.java
private final SmbNegotiationResponse response; private final byte[] negoReqBuffer; private final byte[] negoRespBuffer; /** * @param request * @param response * @param negoRespBuffer * @param negoReqBuffer * */ public SmbNegotiation ( SmbNegotiationRequest request, SmbNegotiationResponse response, byte[] negoReqBuffer, byte[] negoRespBuffer ) { this.request = request;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransWaitNamedPipeResponse.java
TransWaitNamedPipeResponse() { } int writeSetupWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeParametersWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeDataWireFormat( byte[] dst, int dstIndex ) { return 0; } int readSetupWireFormat( byte[] buffer, int bufferIndex, int len ) { return 0; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0)