Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for getAll (0.15 sec)

  1. src/main/java/jcifs/smb/NetServerEnumIterator.java

            if ( locator.getURL().getHost().isEmpty() ) {
                this.request = new NetServerEnum2(th.getConfig(), th.getOEMDomainName(), NetServerEnum2.SV_TYPE_DOMAIN_ENUM);
                this.response = new NetServerEnum2Response(th.getConfig());
            }
            else if ( this.workgroup ) {
                this.request = new NetServerEnum2(th.getConfig(), locator.getURL().getHost(), NetServerEnum2.SV_TYPE_ALL);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java

            super(message, e);
            this.url = url;
            this.abort = abort;
        }
    
        public String getUrl() {
            return url;
        }
    
        public boolean aborted() {
            return abort;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                final Throwable e) {
    
            final CrawlingConfig crawlingConfig = getCrawlingConfig(crawlerContext.getSessionId());
            final String url = urlQueue.getUrl();
    
            final FailureUrlService failureUrlService = ComponentUtil.getComponent(FailureUrlService.class);
            failureUrlService.store(crawlingConfig, errorName, url, e);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java

                if (!list.isEmpty()) {
                    final List<String> newUrlList = new ArrayList<>(list.size());
                    for (final FavoriteLog favoriteLog : list) {
                        newUrlList.add(favoriteLog.getUrl());
                    }
                    return newUrlList;
                }
                return Collections.<String> emptyList();
            }).orElse(Collections.<String> emptyList());
    
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/exentity/FavoriteLog.java

            asDocMeta().version(version);
        }
    
        public void addField(final String key, final Object value) {
            fields.put(key, value);
        }
    
        public String getLogMessage() {
            return getUrl();
        }
    
        public LocalDateTime getRequestedAt() {
            return getCreatedAt();
        }
    
        @Override
        public Map<String, Object> toSource() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/bsentity/BsFavoriteLog.java

            return convertEmptyToNull(queryId);
        }
    
        public void setQueryId(String value) {
            registerModifiedProperty("queryId");
            this.queryId = value;
        }
    
        public String getUrl() {
            checkSpecifiedProperty("url");
            return convertEmptyToNull(url);
        }
    
        public void setUrl(String value) {
            registerModifiedProperty("url");
            this.url = value;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

            return convertEmptyToNull(threadName);
        }
    
        public void setThreadName(String value) {
            registerModifiedProperty("threadName");
            this.threadName = value;
        }
    
        public String getUrl() {
            checkSpecifiedProperty("url");
            return convertEmptyToNull(url);
        }
    
        public void setUrl(String value) {
            registerModifiedProperty("url");
            this.url = value;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/FavoriteLogDbm.java

            setupEpg(_epgMap, et -> ((FavoriteLog) et).getQueryId(), (et, vl) -> ((FavoriteLog) et).setQueryId(DfTypeUtil.toString(vl)),
                    "queryId");
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getUrl(), (et, vl) -> ((FavoriteLog) et).setUrl(DfTypeUtil.toString(vl)), "url");
            setupEpg(_epgMap, et -> ((FavoriteLog) et).getUserInfoId(), (et, vl) -> ((FavoriteLog) et).setUserInfoId(DfTypeUtil.toString(vl)),
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResourceLocator.java

         */
        String getDfsPath ();
    
    
        /**
         * @return the transport port, if specified
         */
        int getPort ();
    
    
        /**
         * @return the original URL
         */
        URL getURL ();
    
    
        /**
         * @return resolved server address
         * @throws CIFSException
         */
        Address getAddress () throws CIFSException;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/Referral.java

        }
    
    
        /**
         * @return the altPath
         */
        public final String getAltPath () {
            return this.altPath;
        }
    
    
        /**
         * @return the ttl
         */
        public final int getTtl () {
            return this.ttl;
        }
    
    
        /**
         * @return the rpath
         */
        public final String getRpath () {
            return this.rpath;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.2K bytes
    - Viewed (0)
Back to top