Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/snippets/developingPlugins/namedDomainObjectContainer/groovy/buildSrc/src/main/java/org/myorg/ServerEnvironment.java

        @javax.inject.Inject
        public ServerEnvironment(String name) {
            this.name = name;
        }
    
        public String getName() {
            return name;
        }
    
        abstract public Property<String> getUrl();
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 381 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/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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomLicense.java

     */
    public interface MavenPomLicense {
    
        /**
         * The name of this license.
         */
        Property<String> getName();
    
        /**
         * The URL of this license.
         */
        Property<String> getUrl();
    
        /**
         * The distribution of this license.
         */
        Property<String> getDistribution();
    
        /**
         * The comments of this license.
         */
        Property<String> getComments();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top