Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 216 for GetUrl (0.23 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DocLink.java

     */
    public interface DocLink extends Serializable {
    
        /**
         * The URL to the documentation page.
         */
        String getUrl();
    
        /**
         * A message that tells the user to consult the documentation.
         * There are currently 2 different messages used for this, hence this method.
         */
        String getConsultDocumentationMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomOrganization.java

            url = objectFactory.property(String.class);
        }
    
        @Override
        public Property<String> getName() {
            return name;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomScm.java

        /**
         * The developer connection URL of this SCM.
         */
        Property<String> getDeveloperConnection();
    
        /**
         * The browsable repository URL of this SCM.
         */
        Property<String> getUrl();
    
        /**
         * The tag of current code in this SCM.
         */
        Property<String> getTag();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyArtifactTest.java

            assertEquals(testType, artifact.getType());
            assertEquals(testExtension, artifact.getExtension());
            assertEquals(testClassifier, artifact.getClassifier());
            assertEquals(testUrl, artifact.getUrl());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 1.5K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/ResponseDataUtil.java

                CloseableUtil.closeQuietly(fos); // for deleting file
                FileUtil.deleteInBackground(tempFile); // clean up
                throw new CrawlingAccessException("Could not read a response body: " + responseData.getUrl(), e);
            } finally {
                CloseableUtil.closeQuietly(fos);
            }
            return tempFile;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomDeveloper.java

         */
        Property<String> getName();
    
        /**
         * The email
         */
        Property<String> getEmail();
    
        /**
         * The URL of this developer.
         */
        Property<String> getUrl();
    
        /**
         * The organization name of this developer.
         */
        Property<String> getOrganization();
    
        /**
         * The organization's URL of this developer.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#getUrl()
         */
        @Override
        public String getUrl() {
            return url;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#setUrl(java.lang.String)
         */
        @Override
        public void setUrl(final String url) {
            this.url = url;
        }
    
        /*
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException.java

                    repos.append(", ");
    
                    if (repository != null) {
                        repos.append(repository.getId())
                                .append(" (")
                                .append(repository.getUrl())
                                .append(")");
                    }
                }
            }
    
            repos.append("]");
    
            return repos.toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomScm.java

            return connection;
        }
    
        @Override
        public Property<String> getDeveloperConnection() {
            return developerConnection;
        }
    
        @Override
        public Property<String> getUrl() {
            return url;
        }
    
        @Override
        public Property<String> getTag() {
            return tag;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         *
         * @return The URL.
         */
        URI getUrl();
    
        /**
         * Sets the base URL of this repository.
         *
         * @param url The base URL.
         */
        void setUrl(URI url);
    
        /**
         * Sets the base URL of this repository.
         *
         * @param url The base URL.
         */
        void setUrl(Object url);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top