Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CrawlingAccessException (0.12 sec)

  1. DataStoreCrawlingException.java

    License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:import org.codelibs.fess.crawler.exception.CrawlingAccessException; L19: L20:public class DataStoreCrawlingException extends CrawlingAccessException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: private final String url; L25: L26: private final boolean abort; L27: L28: public DataStoreCrawlingException(final...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
  2. DocumentHelper.java

    (StringUtil.isBlank(crawlingInfoId)) { L178: throw new CrawlingAccessException("sessionId is null."); L179: } L180: L181: final CrawlerClientFactory crawlerClientFactory = crawlingConfig.initializeClientFactory(ComponentUtil::getCrawlerClientFactory); L182: final CrawlerClient client = crawlerClientFactory.getClient(url); L183: if (client == null) { L184: throw new CrawlingAccessException("CrawlerClient is null for " + url); L185: } L186: L187:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12K bytes
  3. CrawlerLogHelper.java

    n(final Object... objs) { L89: String failureUrlId = "?"; L90: final CrawlerContext crawlerContext = (CrawlerContext) objs[0]; L91: final UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1]; L92: final CrawlingAccessException cae = (CrawlingAccessException) objs[2]; L93: try { L94: Throwable t = cae; L95: if (t instanceof final MultipleCrawlingAccessException mcae) { L96: final Throwable[] causes = mcae.getCauses(); L97: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.3K bytes
  4. AbstractFessFileTransformer.java

    } L160: } L161: } L162: L163: }); L164: } catch (final Exception e) { L165: final CrawlingAccessException rcae = new CrawlingAccessException("Could not get a text from " + responseData.getUrl(), e); L166: rcae.setLogLevel(CrawlingAccessException.WARN); L167: throw rcae; L168: } L169: if (content == null) { L170: content = StringUtil.EMPTY; L171: } L172: final...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      23.6K bytes
  5. FessXpathTransformer.java

    L56:import org.codelibs.fess.crawler.entity.UrlQueue; L57:import org.codelibs.fess.crawler.exception.ChildUrlsException; L58:import org.codelibs.fess.crawler.exception.CrawlerSystemException; L59:import org.codelibs.fess.crawler.exception.CrawlingAccessException; L60:import org.codelibs.fess.crawler.transformer.impl.XpathTransformer; L61:import org.codelibs.fess.crawler.util.CrawlingParameterUtil; L62:import org.codelibs.fess.crawler.util.FieldConfigs; L63:import org.codelibs.fess.es.config.exentity.CrawlingConfig;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      42.9K bytes
  6. PermissionHelper.java

    eSystemClient; L33:import org.codelibs.fess.crawler.client.ftp.FtpClient; L34:import org.codelibs.fess.crawler.client.smb.SmbClient; L35:import org.codelibs.fess.crawler.entity.ResponseData; L36:import org.codelibs.fess.crawler.exception.CrawlingAccessException; L37:import org.codelibs.fess.mylasta.direction.FessConfig; L38:import org.codelibs.fess.util.ComponentUtil; L39: L40:import jakarta.annotation.Resource; L41:import jcifs.SID; L42: L43:public class PermissionHelper { L44: private static...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.3K bytes
  7. BaseThumbnailGenerator.java

    uilder; L33:import org.codelibs.fess.crawler.client.CrawlerClient; L34:import org.codelibs.fess.crawler.client.CrawlerClientFactory; L35:import org.codelibs.fess.crawler.entity.ResponseData; L36:import org.codelibs.fess.crawler.exception.CrawlingAccessException; L37:import org.codelibs.fess.es.client.SearchEngineClient; L38:import org.codelibs.fess.es.config.exentity.CrawlingConfig; L39:import org.codelibs.fess.exception.ThumbnailGenerationException; L40:import org.codelibs.fess.helper.CrawlingConfigHelper;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      11.1K bytes
Back to top