- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 719 for dependents (0.04 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
* </li> * <li><strong>Managed Dependencies Cleanup</strong>: Removes managed dependencies pointing to project artifacts</li> * <li><strong>Dependency Inference</strong>: * <ul> * <li>Removes dependency {@code <version>} when it points to a project artifact</li> * <li>Removes dependency {@code <groupId>} when it points to a project artifact</li> * <li>Applies to main dependencies, profile dependencies, and plugin dependencies</li>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java
* @param session The repository session to use for resolving the plugin artifacts, must not be {@code null}. * @return The dependency tree denoting the resolved plugin class path, never {@code null}. * @throws PluginResolutionException If any dependency could not be resolved. */ DependencyNode resolve( Plugin plugin, Artifact pluginArtifact,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.7K bytes - Viewed (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
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Apr 18 19:53:19 UTC 2024 - 603 bytes - Viewed (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(); ```Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Oct 30 21:39:59 UTC 2025 - 706 bytes - Viewed (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;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 5.2K bytes - Viewed (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) } } }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 18 11:46:45 UTC 2025 - 4.9K bytes - Viewed (0) -
.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
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 385 bytes - Viewed (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]Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Mar 03 06:57:08 UTC 2025 - 6.2K bytes - Viewed (1) -
docs/en/docs/reference/background.md
# Background Tasks - `BackgroundTasks` You can declare a parameter in a *path operation function* or dependency function with the type `BackgroundTasks`, and then you can use it to schedule the execution of background tasks after the response is sent. You can import it directly from `fastapi`: ```python from fastapi import BackgroundTasks ```
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Apr 18 19:53:19 UTC 2024 - 377 bytes - Viewed (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:
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0)