- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 674 for Dependencies (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/graph/GraphBuilder.java
import org.apache.maven.execution.MavenSession; import org.apache.maven.execution.ProjectDependencyGraph; import org.apache.maven.model.building.Result; /** * Builds the {@link ProjectDependencyGraph inter-dependencies graph} between projects in the reactor. * * @since 3.0-alpha */ public interface GraphBuilder { String HINT = "graphBuilder"; Result<? extends ProjectDependencyGraph> build(MavenSession session);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.2K bytes - Click Count (0) -
tests/test_top_level_security_scheme_in_openapi.py
from fastapi.security import HTTPBearer from fastapi.testclient import TestClient from inline_snapshot import snapshot app = FastAPI() bearer_scheme = HTTPBearer() @app.get("/", dependencies=[Depends(bearer_scheme)]) async def get_root(): return {"message": "Hello, World!"} client = TestClient(app) def test_get_root():
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Nov 24 19:03:06 GMT 2025 - 1.9K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.23.md
- [Changelog since v1.23.16](#changelog-since-v12316) - [Changes by Kind](#changes-by-kind) - [Feature](#feature) - [Bug or Regression](#bug-or-regression) - [Dependencies](#dependencies) - [Added](#added) - [Changed](#changed) - [Removed](#removed) - [v1.23.16](#v12316) - [Downloads for v1.23.16](#downloads-for-v12316) - [Source Code](#source-code-1)Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Feb 28 21:06:52 GMT 2023 - 424.5K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.base-conventions.gradle.kts
} val resolvableConfigurations = configurations.filter { it.isCanBeResolved } tasks.register("downloadDependencies") { description = "Download all dependencies to the Gradle cache" doLast { for (configuration in resolvableConfigurations) { configuration.files } } } normalization { runtimeClasspath { metaInf {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 1.9K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts
"${it.module.group}:${it.module.name}:${it.versionConstraint.requiredVersion}" } val testRuntimeOnly = configurations.maybeCreate("testRuntimeOnly") dependencies { testRuntimeOnly(library("junit-jupiter-engine")) testRuntimeOnly(library("junit-vintage-engine")) testRuntimeOnly(library("junit-platform-launcher")) } tasks.withType<Test> { useJUnitPlatform()Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Feb 07 07:16:57 GMT 2026 - 1.7K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
// Verify child elements namespace updated recursively Element dependencies = DomUtils.findChildElement(root, "dependencies"); assertNotNull(dependencies); assertEquals(expectedNamespaceUri, dependencies.namespaceURI()); Element dependency = DomUtils.findChildElement(dependencies, "dependency"); assertNotNull(dependency);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 38.8K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts
id("gradlebuild.detekt") id("gradlebuild.ci-reporting") id("gradlebuild.test-retry") id("gradlebuild.private-javadoc") } val testLibs = project.versionCatalogs.named("testLibs") dependencies { api(platform("gradlebuild:build-platform")) implementation("gradlebuild:gradle-plugin") testImplementation(testLibs.findLibrary("junit5Vintage").get())
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 1.7K bytes - Click Count (0) -
compat/maven-embedder/pom.xml
</parent> <artifactId>maven-embedder</artifactId> <name>Maven Embedder (deprecated)</name> <description>Maven embeddable component, with CLI and logging support.</description> <dependencies> <!-- Maven4 API --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-annotations</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 6.9K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.root-target-runtimes.gradle.kts
plugins { id("gradlebuild.repositories") } val runtimeAware: NamedDomainObjectProvider<DependencyScopeConfiguration> = configurations.dependencyScope("runtimeAware") { description = "All dependencies which should run in a Gradle context, and therefore must declare or inherit target runtime compatibility" } // Computes a map of all projects in the full Gradle distribution to their target runtime details file.Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 2.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/transforms/FindGradleClasspath.groovy
abstract Provider<FileSystemLocation> getArtifact() @Override void transform(TransformOutputs outputs) { File artifactFile = artifact.get().asFile if (artifactFile.name == 'gradle-dependencies') { (artifactFile.listFiles() as List<File>).sort { it.name }.each { outputs.file(it) } } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jul 07 13:12:26 GMT 2021 - 1.7K bytes - Click Count (0)