Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for Downloading (0.15 sec)

  1. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolutionExceptionTest.java

            String downloadUrl = "http://somewhere.com/download";
            List<String> path = Arrays.asList("dependency1", "dependency2");
            String expected = "Missing artifact" + LS + LS + "  Try downloading the file manually from: " + LS
                    + "      http://somewhere.com/download" + LS + LS + "  Then, install it using the command: " + LS
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. mvnw

    MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}; export MAVEN_PROJECTBASEDIR
    log "$MAVEN_PROJECTBASEDIR"
    
    ##########################################################################################
    # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
    # This allows using the maven wrapper in projects that prohibit checking in binary data.
    ##########################################################################################
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperConcurrentDownloadTest.groovy

            prepareWrapper(server.uri("gradle-bin.zip"))
    
            when:
            def results = [1..4].collect { wrapperExecuter.start() }*.waitForFinish()
    
            then:
            results.findAll { it.output.contains("Downloading") }.size() == 1
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_wrapper_basics.adoc

    [[gradle_wrapper_basics]]
    = Gradle Wrapper Basics
    
    The **recommended way to execute any Gradle build** is with the Gradle Wrapper.
    
    image::gradle-basic-2.png[]
    
    The _Wrapper_ script invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    image::wrapper-workflow.png[]
    
    The Wrapper is available as a `gradlew` or `gradlew.bat` file.
    
    The Wrapper provides the following benefits:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java

            this.out = out;
        }
    
        @Override
        public void transferInitiated(TransferEvent event) {
            String action = event.getRequestType() == TransferEvent.RequestType.PUT ? "Uploading" : "Downloading";
            String direction = event.getRequestType() == TransferEvent.RequestType.PUT ? "to" : "from";
    
            TransferResource resource = event.getResource();
            MessageBuilder message = messageBuilderFactory.builder();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

                return "-Dstudio.home=${androidStudioHome.get()}"
            }
            throw IllegalArgumentException("Android Studio home must be provided via the 'studioHome' system property, or auto downloading must be enabled via `autoDownloadAndroidStudio=true` gradle property, system property, or environment variable")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 09:51:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. cluster/get-kube.sh

    #  one of the two is set, the other will be defaulted to the
    #  KUBERNETES_SERVER_PLATFORM/ARCH.
    #    * amd64 [default]
    #    * arm
    #    * arm64
    #    * ppc64le
    #
    #  Set KUBERNETES_SKIP_DOWNLOAD to skip downloading a release.
    #  Set KUBERNETES_SKIP_CONFIRM to skip the installation confirmation prompt.
    #  Set KUBERNETES_SKIP_CREATE_CLUSTER to skip starting a cluster.
    #  Set KUBERNETES_SKIP_RELEASE_VALIDATION to skip trying to validate the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    = Gradle Wrapper Reference
    
    The **recommended way to execute any Gradle build** is with the help of the Gradle Wrapper (referred to as "Wrapper").
    
    The Wrapper is a script that invokes a declared version of Gradle, downloading it beforehand if necessary.
    As a result, developers can get up and running with a Gradle project quickly.
    
    image::wrapper-workflow.png[]
    
    In a nutshell, you gain the following benefits:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. architecture/runtimes.md

    - CLI client. This is the `gradle` or `gradlew` command, and is responsible for locating, starting and interacting with the Gradle daemon, potentially downloading the Gradle distribution. 
    - Tooling API client. This a library that is embedded into applications, such as IDEs or CI agents, that allows them to act as a Gradle client.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                    final FileLock fileLock = cacheDirProvider.acquireWriteLock(archiveFile, "Downloading toolchain");
                    try {
                        if (!archiveFile.exists()) {
                            wrapInOperation("Downloading toolchain from URI " + uri, () -> {
                                downloader.download(uri, archiveFile, resource);
                                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top