Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for downloadUrl (0.18 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

        }
    
        @Override
        public String getDownloadUrl() {
            return downloadUrl;
        }
    
        @Override
        public void setDownloadUrl(String downloadUrl) {
            this.downloadUrl = downloadUrl;
        }
    
        @Override
        public ArtifactFilter getDependencyFilter() {
            return dependencyFilter;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                String artifactId,
                String version,
                String type,
                String classifier,
                String downloadUrl,
                List<String> path) {
            StringBuilder sb = new StringBuilder(message);
    
            if (!"pom".equals(type)) {
                if (downloadUrl != null) {
                    sb.append(LS);
                    sb.append(LS);
                    sb.append(indentation);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

        <ciManagement>
            <system>travis</system>
            <url>https://travis-ci.org/junit-team/junit4</url>
        </ciManagement>
        <distributionManagement>
            <downloadUrl>https://github.com/junit-team/junit4/wiki/Download-and-Install</downloadUrl>
            <snapshotRepository>
                <id>junit-snapshot-repo</id>
                <name>Nexus Snapshot Repository</name>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  4. cmd/common-main.go

    	if err != nil {
    		return
    	}
    
    	var older time.Duration
    	var downloadURL string
    	if lrTime.After(currentReleaseTime) {
    		older = lrTime.Sub(currentReleaseTime)
    		downloadURL = getDownloadURL(releaseTimeToReleaseTag(lrTime))
    	}
    
    	updateMsg := prepareUpdateMessage(downloadURL, older)
    	if updateMsg == "" {
    		return
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 35.8K bytes
    - Viewed (2)
  5. cmd/update.go

    	// Mesos deployment doc link.
    	mesosDeploymentDoc = "https://min.io/docs/minio/kubernetes/upstream/index.html#quickstart-for-kubernetes"
    )
    
    func getDownloadURL(releaseTag string) (downloadURL string) {
    	// Check if we are in DCOS environment, return
    	// deployment guide for update procedures.
    	if IsDCOS() {
    		return mesosDeploymentDoc
    	}
    
    	// Check if we are in kubernetes environment, return
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  6. .teamcity/mvnw

                    # Compiling the Java class
                    ("$JAVA_HOME/bin/javac" "$javaClass")
                fi
                if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
                    # Running the downloader
                    if [ "$MVNW_VERBOSE" = true ]; then
                      echo " - Running MavenWrapperDownloader.java ..."
                    fi
    Shell Script
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Viewed (0)
Back to top