Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 216 for GetUrl (0.17 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/DocumentationLink.java

     *
     * @since 8.6
     */
    @Incubating
    public interface DocumentationLink {
    
        /**
         * Documentation link as a URL.
         *
         * @since 8.6
         */
        @Nullable
        String getUrl();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 13:56:41 UTC 2023
    - 955 bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

            SmbResourceLocator loc = this.getParent().getLocator();
            String unc = loc.getUNCPath();
            String p = loc.getURL().getPath();
            if ( p.lastIndexOf('/') != ( p.length() - 1 ) ) {
                throw new SmbException(loc.getURL() + " directory must end with '/'");
            }
            if ( unc.lastIndexOf('\\') != ( unc.length() - 1 ) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/commandLineOption-optionValues/groovy/buildSrc/src/main/java/UrlProcess.java

        public void setUrl(String url) {
            if (!getHttp().getOrElse(true) && url.startsWith("http://")) {
                throw new IllegalArgumentException("HTTP is not allowed");
            } else {
                this.url = url;
            }
        }
    
        @Input
        public String getUrl() {
            return url;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java

        void setId(IDTYPE id);
    
        String getSessionId();
    
        void setSessionId(String sessionId);
    
        String getMethod();
    
        void setMethod(String method);
    
        String getUrl();
    
        void setUrl(String url);
    
        String getMetaData();
    
        void setMetaData(String metaData);
    
        String getEncoding();
    
        void setEncoding(String encoding);
    
        String getParentUrl();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultDocumentationLink.java

        private final String url;
    
        public DefaultDocumentationLink(@Nullable String url) {
            this.url = url;
        }
    
        @Override
        public String getUrl() {
            return url;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 14:03:59 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/software/version-control/src/main/java/org/gradle/vcs/git/GitVersionControlSpec.java

         * operations which are both unsuited for simple data specification and
         * allocate additional memory.</p>
         */
        URI getUrl();
    
        /**
         * Sets the URL of the repository.
         */
        void setUrl(URI url);
    
        /**
         * Sets the URL of the repository.
         */
        void setUrl(String url);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.plugin.repository.IvyPluginRepository.xml

            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>getUrl</td>
                </tr>
                <tr>
                    <td>setUrl</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.plugin.repository.MavenPluginRepository.xml

            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>getUrl</td>
                </tr>
                <tr>
                    <td>setUrl</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultDocLink.java

    public class DefaultDocLink implements DocLink {
    
        private final String url;
    
        public DefaultDocLink(String url) {
            this.url = Preconditions.checkNotNull(url);
        }
    
        @Override
        public String getUrl() {
            return url;
        }
    
        @Override
        public String getConsultDocumentationMessage() {
            return "For more information, please refer to " + url + ".";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 16:02:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            assertEquals("fess-ds-atlassian", list.get(0).getName());
            assertEquals("12.2.0", list.get(0).getVersion());
            assertEquals("plugin/repo1/fess-ds-atlassian/12.2.0/fess-ds-atlassian-12.2.0.jar", list.get(0).getUrl());
        }
    
        public void test_processRepository2() {
            List<Artifact> list = pluginHelper.processRepository(ArtifactType.DATA_STORE, "plugin/repo2/");
            assertEquals(1, list.size());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top