- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 3,763 for int (0.02 sec)
-
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
return this.endOfFile; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @Override public int decode ( byte[] buffer, int bufferIndex, int len ) throws SMBProtocolDecodingException { int start = bufferIndex; this.allocationSize = SMBUtil.readInt8(buffer, bufferIndex); bufferIndex += 8;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSignature.java
public static final int KERB_CHECKSUM_HMAC_MD5 = 0xFFFFFF76; public static final int HMAC_SHA1_96_AES128 = 0x0000000F; public static final int HMAC_SHA1_96_AES256 = 0x00000010; public static final int ETYPE_ARCFOUR_HMAC = 23; public static final int ETYPE_AES128_CTS_HMAC_SHA1_96 = 17; public static final int ETYPE_AES256_CTS_HMAC_SHA1_96 = 18; private int type; private byte[] checksum;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
fastapi/params.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 18:06:20 UTC 2024 - 27.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java
public Object measureSize() { list = impl.newExecutionList(); for (int i = 0; i < numListeners; i++) { list.add(listener, directExecutor()); } return list.getImpl(); } @Benchmark int addThenExecute_singleThreaded(int reps) { int returnValue = 0; for (int i = 0; i < reps; i++) { list = impl.newExecutionList();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java
* * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */ @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; SMBUtil.writeInt2(24, dst, dstIndex); SMBUtil.writeInt2(this.closeFlags, dst, dstIndex + 2); dstIndex += 4; dstIndex += 4; // Reserved
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/HMACT64.java
} protected int engineDigest(byte[] buf, int offset, int len) { byte[] digest = md5.digest(); md5.update(opad); md5.update(digest); try { return md5.digest(buf, offset, len); } catch (Exception ex) { throw new IllegalStateException(); } } protected int engineGetDigestLength() {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/util/HMACT64.java
*/ public HMACT64 ( byte[] key ) { super("HMACT64"); int length = Math.min(key.length, BLOCK_LENGTH); for ( int i = 0; i < length; i++ ) { this.ipad[ i ] = (byte) ( key[ i ] ^ IPAD ); this.opad[ i ] = (byte) ( key[ i ] ^ OPAD ); } for ( int i = length; i < BLOCK_LENGTH; i++ ) { this.ipad[ i ] = IPAD; this.opad[ i ] = OPAD;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
protected long maxUncompressionSize = 1000000; protected int initialBufferSize = 10000; protected boolean replaceDuplication = false; protected int[] spaceChars = { '\u0020', '\u00a0', '\u3000', '\ufffd' }; protected int memorySize = 1024 * 1024; //1mb protected int maxAlphanumTermSize = -1; protected int maxSymbolTermSize = -1; protected TikaConfig tikaConfig;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25K bytes - Viewed (0) -
docs_src/query_param_models/tutorial001_an_py310.py
from typing import Annotated, Literal from fastapi import FastAPI, Query from pydantic import BaseModel, Field app = FastAPI() class FilterParams(BaseModel): limit: int = Field(100, gt=0, le=100) offset: int = Field(0, ge=0) order_by: Literal["created_at", "updated_at"] = "created_at" tags: list[str] = [] @app.get("/items/") async def read_items(filter_query: Annotated[FilterParams, Query()]):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 443 bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java
private static final Logger LOGGER = LoggerFactory.getLogger(SimplexTransferListener.class); private static final int QUEUE_SIZE = 1024; private static final int BATCH_MAX_SIZE = 500; private final TransferListener delegate; private final int batchMaxSize; private final boolean blockOnLastEvent; private final ArrayBlockingQueue<Exchange> eventQueue; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0)