- Sort Score
- Result 10 results
- Languages All
Results 871 - 880 of 3,763 for Int (0.03 sec)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
* @see jcifs.internal.CommonServerMessageBlockRequest#setTid(int) */ @Override public void setTid ( int t ) { setTreeId(t); } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#encode(byte[], int) */ @Override public int encode ( byte[] dst, int dstIndex ) { int len = super.encode(dst, dstIndex); int exp = size();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
public static String fromUNIBytes ( byte[] src, int srcIndex, int len ) { return new String(src, srcIndex, len, UNI_ENCODING); } /** * @param buffer * @param bufferIndex * @param maxLen * @return position of terminating null bytes */ public static int findUNITermination ( byte[] buffer, int bufferIndex, int maxLen ) { int len = 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 4.9K bytes - Viewed (0) -
docs_src/body_multiple_params/tutorial004.py
class User(BaseModel): username: str full_name: Union[str, None] = None @app.put("/items/{item_id}") async def update_item( *, item_id: int, item: Item, user: User, importance: int = Body(gt=0), q: Union[str, None] = None, ): results = {"item_id": item_id, "item": item, "user": user, "importance": importance} if q: results.update({"q": q})
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Mar 10 18:49:18 UTC 2023 - 653 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java
final int range = max - min; final int s1 = min + (1 * range) / 4; final int s2 = min + (2 * range) / 4; final int s3 = min + (3 * range) / 4; final char[] dst = new char[12]; // Put surrogate pairs at odd indices so they can be split easily dst[0] = 'x'; Character.toChars(min, dst, 1); Character.toChars(s1, dst, 3); Character.toChars(s2, dst, 5);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 5.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java
final int range = max - min; final int s1 = min + (1 * range) / 4; final int s2 = min + (2 * range) / 4; final int s3 = min + (3 * range) / 4; final char[] dst = new char[12]; // Put surrogate pairs at odd indices so they can be split easily dst[0] = 'x'; Character.toChars(min, dst, 1); Character.toChars(s1, dst, 3); Character.toChars(s2, dst, 5);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 5.9K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
this.importedFrom = null; } public InputLocation(int lineNumber, int columnNumber) { this(lineNumber, columnNumber, null, null); } public InputLocation(int lineNumber, int columnNumber, InputSource source) { this(lineNumber, columnNumber, source, null); } public InputLocation(int lineNumber, int columnNumber, InputSource source, Object selfLocationKey) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
private static final Logger log = LoggerFactory.getLogger(AndXServerMessageBlock.class); private static final int ANDX_COMMAND_OFFSET = 1; private static final int ANDX_RESERVED_OFFSET = 2; private static final int ANDX_OFFSET_OFFSET = 3; private byte andxCommand = (byte) 0xFF; private int andxOffset = 0; private ServerMessageBlock andx;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Nov 28 10:56:27 UTC 2022 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsPagingResultBean.java
this.took = took; } public int getTotalShards() { return totalShards; } public void setTotalShards(int totalShards) { this.totalShards = totalShards; } public int getSuccessfulShards() { return successfulShards; } public void setSuccessfulShards(int successfulShards) { this.successfulShards = successfulShards; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
tests/test_starlette_urlconvertors.py
from fastapi import FastAPI, Path, Query from fastapi.testclient import TestClient app = FastAPI() @app.get("/int/{param:int}") def int_convertor(param: int = Path()): return {"int": param} @app.get("/float/{param:float}") def float_convertor(param: float = Path()): return {"float": param} @app.get("/path/{param:path}") def path_convertor(param: str = Path()): return {"path": param}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Nov 27 14:46:06 UTC 2022 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java
int b = in.read(); assertEquals('y', b); verify(hasher).putByte((byte) 'y'); verify(hashFunction).newHasher(); verifyNoMoreInteractions(hashFunction, hasher); } public void testRead_putByteArray() throws Exception { HashingInputStream in = new HashingInputStream(hashFunction, buffer); byte[] buf = new byte[4]; int numOfByteRead = in.read(buf, 0, buf.length);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 02 16:24:50 UTC 2020 - 5K bytes - Viewed (0)