- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 645 for dependentes (0.06 sec)
-
okhttp-android/build.gradle.kts
compileOptions { targetCompatibility(JavaVersion.VERSION_11) sourceCompatibility(JavaVersion.VERSION_11) } kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } } dependencies { api(libs.squareup.okio) api(projects.okhttp) api(projects.loggingInterceptor) compileOnly(libs.androidx.annotation) compileOnly(libs.findbugs.jsr305) debugImplementation(libs.androidx.annotation)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 11:07:32 UTC 2024 - 2K bytes - Viewed (0) -
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);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (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)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts
id("gradlebuild.code-quality") id("gradlebuild.detekt") id("gradlebuild.ci-reporting") id("gradlebuild.test-retry") id("gradlebuild.private-javadoc") } java.configureJavaToolChain() dependencies { api(platform("gradlebuild:build-platform")) implementation("gradlebuild:gradle-plugin") testImplementation("org.junit.vintage:junit-vintage-engine") } tasks.withType<KotlinCompile>().configureEach {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/LocalRepository.java
import org.apache.maven.api.annotations.Nonnull; /** * <p>The <dfn>local repository</dfn> is a directory on the developer's machine where * Maven stores all the downloaded artifacts (such as dependencies, plugins, * and project artifacts). When Maven builds a project, it first checks the * local repository to see if the required artifacts are already available.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2K bytes - Viewed (0) -
tests/test_tutorial/test_dependencies/test_tutorial004_an_py310.py
import pytest from dirty_equals import IsDict from fastapi.testclient import TestClient from ...utils import needs_py310 @pytest.fixture(name="client") def get_client(): from docs_src.dependencies.tutorial004_an_py310 import app client = TestClient(app) return client @needs_py310 @pytest.mark.parametrize( "path,expected_status,expected_response", [ ( "/items",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 5.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java
String SCOPE_RUNTIME_PLUS_SYSTEM = "runtime+system"; String SCOPE_PROVIDED = "provided"; String SCOPE_SYSTEM = "system"; String SCOPE_IMPORT = "import"; // Used to import dependencyManagement dependencies String getGroupId(); String getArtifactId(); String getVersion(); void setVersion(String version); String getScope(); String getType();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
.github/workflows/pylint-presubmit.yml
- name: Set up Python 3.9 uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 with: python-version: "3.9" - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install pylint==2.13.9 numpy wheel - name: Run PyLint on changed files run: |
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 1.7K bytes - Viewed (0) -
.github/CONTRIBUTING.md
- Get working code on a personal branch with tests before you submit a PR. - OkHttp is a small and light dependency. Don't introduce new dependencies or major new functionality. - OkHttp targets the intersection of RFC correct *and* widely implemented. Incorrect implementations that are very widely implemented e.g. a bug in Apache, Nginx, Google, Firefox should also be handled.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 17 04:16:26 UTC 2019 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
*/ @Nonnull Path getBasedir(); /** * Returns the project direct dependencies (directly specified or inherited). */ @Nonnull List<DependencyCoordinates> getDependencies(); /** * Returns the project managed dependencies (directly specified or inherited). */ @Nonnull List<DependencyCoordinates> getManagedDependencies();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0)