Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for getUri (0.07 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

                return "test_session";
            }
    
            @Override
            public String getRuleId() {
                return "test_rule";
            }
    
            @Override
            public String getUrl() {
                return "http://test.example.com";
            }
    
            @Override
            public String getParentUrl() {
                return null;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceLocator.java

         */
        int getPort();
    
        /**
         * Returns the original URL object used to create this SMB resource.
         *
         * @return the original URL
         */
        URL getURL();
    
        /**
         * Returns the resolved network address of the server hosting this SMB resource.
         *
         * @return resolved server address
         * @throws CIFSException if the address cannot be resolved
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SID.java

        }
    
        /**
         * Get the RID
         *
         * This is the last subauthority identifier
         *
         * @return the RID
         */
        @Override
        public int getRid() {
            if (getType() == SID_TYPE_DOMAIN) {
                throw new IllegalArgumentException("This SID is a domain sid");
            }
            return this.sub_authority[this.sub_authority_count - 1];
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    params.put("Query ID", e.getQueryId());
                    params.put("Doc ID", e.getDocId());
                    params.put("User Session ID", e.getUserSessionId());
                    params.put("URL", e.getUrl());
                    params.put("URL ID", e.getUrlId());
                    params.put("Order", toNumberString(e.getOrder()));
                    params.put("Query Requested Time", FessFunctions.formatDate(e.getQueryRequestedAt()));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

         * @throws PluginException if installation fails
         */
        protected void install(final Artifact artifact) {
            final String fileName = artifact.getFileName();
            final String url = artifact.getUrl();
            if (StringUtil.isBlank(url)) {
                throw new PluginException("url is blank: " + artifact.getName());
            }
            if (url.startsWith("http:") || url.startsWith("https:")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/CrawlerStatsHelperTest.java

                this.id = id;
                this.url = url;
            }
    
            @Override
            public String getId() {
                return id;
            }
    
            @Override
            public String getUrl() {
                return url;
            }
    
            @Override
            public String getMetaData() {
                return null;
            }
    
            @Override
            public String getEncoding() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 15K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

         */
        @Override
        public int getPort() {
            return this.url.getPort();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbResourceLocator#getURL()
         */
        @Override
        public URL getURL() {
            return this.url;
        }
    
        /**
         *
         * {@inheritDoc}
         *
         * @see jcifs.smb.SmbResourceLocatorInternal#shouldForceSigning()
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTreeConnection.java

                    } catch (final Exception e) {
                        log.debug("Retry also failed", e);
                        throw sae;
                    }
                } else {
                    if (!this.ctx.renewCredentials(loc.getURL().toString(), sae)) {
                        throw sae;
                    }
                    log.debug("Trying to renew credentials after auth error");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

             * @return MyBean
             */
            public MyBean setHhh(final String hhh) {
                return this;
            }
    
            /**
             *
             */
            public void getIii() {
            }
    
            /**
             * @param arg1
             * @param arg2
             * @return Number
             */
            public Number add(final Number arg1, final Number arg2) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

         * is supported (i.e. no {@code doOutput}).
         *
         * @deprecated Use getURL() instead
         * @return A new <code>{@link java.net.URL}</code> for this <code>SmbFile</code>
         */
        @Deprecated
        public URL toURL() {
            return getURL();
        }
    
        /**
         * Computes a hashCode for this file based on the URL string and IP
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top