- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 31 for Downloaded (0.05 seconds)
-
.gitignore
/_gopath/ # Config directories created by gcloud and gsutil on Jenkins /.config/gcloud*/ /.gsutil/ # CoreOS stuff /cluster/libvirt-coreos/coreos_*.img # Downloaded Kubernetes binary release /kubernetes/ # direnv .envrc files .envrc # Downloaded kubernetes binary release tar ball kubernetes.tar.gz # Phony test files used as part of coverage generation zz_generated_*_test.go
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu Feb 29 08:22:06 GMT 2024 - 2.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DownloadedArtifact.java
import org.apache.maven.api.annotations.Immutable; /** * An {@link Artifact} that has been resolved, i.e. downloaded to the local repository. * * @since 4.0.0 */ @Experimental @Immutable public interface DownloadedArtifact extends Artifact { /** * {@return the a path to the file that has been downloaded to the file system}. */ Path getPath();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jun 26 07:56:58 GMT 2025 - 1.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/DownloadGitRepoToEc2Agent.kt
param("defaultBranchName", "master") } steps { script { name = "DO_NOTHING" executionMode = BuildStep.ExecutionMode.ALWAYS scriptContent = "echo 'Repo downloaded'" } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Nov 12 06:13:12 GMT 2025 - 758 bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactCollector.java
import javax.inject.Named; import javax.inject.Singleton; /** * Artifact collector - takes a set of original artifacts and resolves the best versions to use * along with their metadata. No artifacts are downloaded. */ @Deprecated @Named @Singleton public class DefaultArtifactCollector extends org.apache.maven.repository.legacy.resolver.DefaultLegacyArtifactCollector
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 1.2K bytes - Click Count (0) -
util/gradle_integration_tests.sh
# We run this separately so that its change to the default toolchain doesn't affect anything else. # (And we run it after the main build so that that build has already downloaded Java 11 if necessary.) ./mvnw --projects '!guava-testlib,!guava-tests,!guava-bom,!guava-gwt' initialize -P print-java-11-home export JAVA_HOME=$(<target/java_11_home) # Gradle Wrapper overwrites some files when it runs.
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Jan 02 19:24:12 GMT 2025 - 1.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DownloadedDependency.java
*/ package org.apache.maven.api; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Immutable; /** * A {@link Dependency} that has been resolved, i.e. downloaded to the local repository. * * @since 4.0.0 */ @Experimental @ImmutableCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Aug 27 21:13:34 GMT 2024 - 1.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java
* <li><dfn>{@linkplain org.apache.maven.api.LocalRepository local repository}</dfn>: A directory on the developer's machine where Maven caches * downloaded artifacts.</li> * <li><dfn>{@linkplain org.apache.maven.api.RemoteRepository remote repository}</dfn>: A central or distributed location from which Maven can download artifacts * when they are not available locally.</li>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Dec 15 11:13:42 GMT 2025 - 7.7K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactCollector.java
import org.apache.maven.artifact.resolver.filter.ArtifactFilter; /** * Artifact collector - takes a set of original artifacts and resolves the best versions to use * along with their metadata. No artifacts are downloaded. */ @Deprecated public interface ArtifactCollector extends org.apache.maven.repository.legacy.resolver.LegacyArtifactCollector { @Deprecated ArtifactResolutionResult collect(Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 1.8K bytes - Click Count (0) -
KEYS.md
Alternatively, you can fetch the key directly from a key server: ```bash gpg --keyserver hkps://keys.openpgp.org --recv-keys 1BD97A6A154E7810EE0BC832E2F38302C8075E3D ``` ### Verifying signatures Once you've downloaded a Gradle JAR file or a distribution and its corresponding signature file (with a `.asc` extension), you can verify its authenticity against the public key.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 04 14:29:13 GMT 2025 - 4.7K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/CacheRetention.java
*/ @Experimental public enum CacheRetention { /** * Data should be persisted across Maven invocations. * Suitable for: * - Dependency resolution results * - Compilation outputs * - Downloaded artifacts */ PERSISTENT, /** * Data should be retained for the duration of the current Maven session. * Suitable for: * - Build-wide configuration * - Project model cachingCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 1.9K bytes - Click Count (0)