- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 526 for dependency_c (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/en/docs/reference/response.md
# `Response` class You can declare a parameter in a *path operation function* or dependency to be of type `Response` and then you can set data for the response like headers or cookies. You can also use it directly to create an instance of it and return it from your *path operations*. You can import it directly from `fastapi`: ```python from fastapi import Response ```
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Apr 18 19:53:19 GMT 2024 - 397 bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Primitives.java
// It's a constant, and we can't use ImmutableMap here without creating a circular dependency. @SuppressWarnings("ConstantCaseForConstants") private static final Map<Class<?>, Class<?>> PRIMITIVE_TO_WRAPPER_TYPE; /** A map from wrapper types to their corresponding primitive types. */ // It's a constant, and we can't use ImmutableMap here without creating a circular dependency. @SuppressWarnings("ConstantCaseForConstants")
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 28 01:26:26 GMT 2024 - 4.8K bytes - Click Count (0) -
docs/en/docs/reference/parameters.md
# Request Parameters Here's the reference information for the request parameters. These are the special functions that you can put in *path operation function* parameters or dependency functions with `Annotated` to get data from the request. It includes: * `Query()` * `Path()` * `Body()` * `Cookie()` * `Header()` * `Form()` * `File()` You can import them all directly from `fastapi`: ```python
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Apr 18 19:53:19 GMT 2024 - 603 bytes - Click Count (0) -
mockwebserver-junit4/README.md
MockWebServer for JUnit 4 ========================= This module integrates mockwebserver3.MockWebServer with JUnit 4. To use, first add this library as a test dependency: ``` testImplementation("com.squareup.okhttp3:mockwebserver3-junit4:5.3.0") ``` Then in tests annotated `@org.junit.Test`, you may declare a field with the `@Rule` annotation: ``` @Rule public final MockWebServerRule serverRule = new MockWebServerRule(); ```Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Oct 30 21:39:59 GMT 2025 - 706 bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java
import java.util.Map; import java.util.Objects; import java.util.Optional; import java.util.stream.Collectors; import org.apache.maven.RepositoryUtils; import org.apache.maven.api.Artifact; import org.apache.maven.api.Dependency; import org.apache.maven.api.MojoExecution; import org.apache.maven.api.Node; import org.apache.maven.api.Plugin; import org.apache.maven.api.model.PluginExecution;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 5.2K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt
val classFile = classesDir.resolve(fileName) jarOutputStream.addJarEntry(fileName, classFile) for (dependency in classDetails.dependencies) { visitTree(dependency, classesDir, jarOutputStream, visited) } } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 18 11:46:45 GMT 2025 - 4.9K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/FixProjectHealthTask.kt
val lines = file.readLines().toMutableList() dependencies.forEach { dependency -> val dependencyRegex = Regex("""(api|implementation)(\(projects\.[a-zA-Z]+\)) \(was (api|implementation)\)""") val match = dependencyRegex.find(dependency) if (match != null) { val oldDependency = match.groupValues[3] + match.groupValues[2]Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Mar 03 06:57:08 GMT 2025 - 6.2K bytes - Click Count (1) -
.gitignore
/target/ /.settings/ /fess-crawler*/target/ /fess-crawler*/bin/ /fess-crawler*/mydbflute/ /fess-crawler*/.project /fess-crawler*/.classpath /fess-crawler*/.settings/ /fess-crawler*/dependency-reduced-pom.xml /fess-crawler*/dbflute_crawler/log/*.log /fess-crawler*/dbflute_crawler/schema/project-schema-robot.xml /fess-crawler/phantomjsdriver.log .project .idea *.iml /.vscode
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Aug 31 05:32:52 GMT 2025 - 385 bytes - Click Count (0) -
README.md
## Requirements - Java 17 or higher - SLF4J for logging - Bouncy Castle (for SMB3 encryption support) ## Using Maven ```xml <dependency> <groupId>org.codelibs</groupId> <artifactId>jcifs</artifactId> <version>2.1.39</version> </dependency> ``` ## Features ### Protocol Support The library supports a full range of SMB protocols with automatic negotiation:
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 09:24:52 GMT 2025 - 6.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryAwareRequest.java
/** * Base interface for service requests that involve remote repository operations. * This interface provides common functionality for requests that need to specify * and validate remote repositories for artifact resolution, dependency collection, * model building, and other Maven operations. * * <p>Implementations of this interface can specify a list of remote repositories * to be used during the operation. If no repositories are specified (null),
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 5K bytes - Click Count (0)