- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,826 for paras (0.04 sec)
-
docs_src/dependency_testing/tutorial001_an_py310.py
@app.get("/items/") async def read_items(commons: Annotated[dict, Depends(common_parameters)]): return {"message": "Hello Items!", "params": commons} @app.get("/users/") async def read_users(commons: Annotated[dict, Depends(common_parameters)]): return {"message": "Hello Users!", "params": commons} client = TestClient(app) async def override_dependency(q: str | None = None):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 1.5K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsParseException.java
/** * Creates a new parser exception with the specified details. * * @param message The error message, may be {@code null}. * @param lineNumber The one-based index of the line containing the error or {@code -1} if unknown. * @param columnNumber The one-based index of the column containing the error or {@code -1} if unknown. * @param cause The nested cause of this error, may be {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/Decodable.java
*/ package jcifs; import jcifs.internal.SMBProtocolDecodingException; /** * @author mbechler * */ public interface Decodable { /** * @param buffer * @param bufferIndex * @param len * @return decoded length * @throws SMBProtocolDecodingException */ int decode ( byte[] buffer, int bufferIndex, int len ) throws SMBProtocolDecodingException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformation.java
/** * */ public class Trans2QueryPathInformation extends SmbComTransaction { private final int informationLevel; /** * * @param config * @param filename * @param informationLevel */ public Trans2QueryPathInformation ( Configuration config, String filename, int informationLevel ) { super(config, SMB_COM_TRANSACTION2, TRANS2_QUERY_PATH_INFORMATION);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/RequestWithPath.java
*/ String getFullUNCPath (); /** * @param path */ void setPath ( String path ); /** * * @param domain * @param server * @param fullPath */ void setFullUNCPath ( String domain, String server, String fullPath ); /** * @param resolve * */ void setResolveInDfs ( boolean resolve );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 26 19:18:53 UTC 2019 - 4.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/RateLimiter.java
* * @param permitsPerSecond the rate of the returned {@code RateLimiter}, measured in how many * permits become available per second * @param warmupPeriod the duration of the period where the {@code RateLimiter} ramps up its rate, * before reaching its stable (maximum) rate * @param unit the time unit of the warmupPeriod argument
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 21.9K bytes - Viewed (0) -
guava/src/com/google/common/io/Resources.java
/** * Streams lines from a URL, stopping when our callback returns false, or we have read all of the * lines. * * @param url the URL to read from * @param charset the charset used to decode the input stream; see {@link StandardCharsets} for * helpful predefined constants * @param callback the LineProcessor to use to handle the lines * @return the output of processing the lines
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbException.java
} /** * * @param msg * @param rootCause */ public SmbException ( String msg, Throwable rootCause ) { super(msg, rootCause); this.status = NT_STATUS_UNSUCCESSFUL; } /** * * @param errcode * @param winerr */ public SmbException ( int errcode, boolean winerr ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:16:55 UTC 2018 - 5.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java
* the path merely indicates where the artifact would eventually be stored. * * @param session The session to use, must not be {@code null}. * @param local The local repository, must not be {@code null}. * @param artifact The artifact for which to determine the path, must not be {@code null}. * @param remote – The source repository of the artifact, must not be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Dec 08 09:10:49 UTC 2023 - 2.7K bytes - Viewed (0)