Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for caClient (0.05 sec)

  1. CrawlerEngineClient.java

    specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.es.client; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19: L20:import org.codelibs.core.lang.StringUtil; L21:import org.codelibs.fesen.client.HttpClient; L22:import org.codelibs.fess.Constants; L23:import org.codelibs.fess.crawler.client.FesenClient; L24:import org.codelibs.fess.mylasta.direction.FessConfig; L25:import org.codelibs.fess.util.ComponentUtil; L26:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.3K bytes
  2. CrawlingConfig.java

    .UsernamePasswordCredentials; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.Constants; L24:import org.codelibs.fess.crawler.client.CrawlerClientFactory; L25:import org.codelibs.fess.crawler.client.ftp.FtpClient; L26:import org.codelibs.fess.crawler.client.http.HcHttpClient; L27:import org.codelibs.fess.crawler.client.smb.SmbClient; L28:import org.codelibs.fess.mylasta.direction.FessConfig; L29:import org.codelibs.fess.util.ComponentUtil; L30: L31:public interface CrawlingConfig...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      5.5K bytes
  3. WebConfigTest.java

    org.codelibs.fess.Constants; L25:import org.codelibs.fess.app.service.RequestHeaderService; L26:import org.codelibs.fess.app.service.WebAuthenticationService; L27:import org.codelibs.fess.crawler.client.CrawlerClientFactory; L28:import org.codelibs.fess.crawler.client.http.Authentication; L29:import org.codelibs.fess.crawler.client.http.HcHttpClient; L30:import org.codelibs.fess.helper.SystemHelper; L31:import org.codelibs.fess.mylasta.direction.FessConfig; L32:import org.codelibs.fess.mylasta.direction.FessProp;...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu May 09 09:48:04 UTC 2024
      7.6K bytes
  4. ScoreBooster.java

    == 0) { L69: return 0L; L70: } L71: final SearchEngineClient client = ComponentUtil.getSearchEngineClient(); L72: if (bulkRequestBuilder == null) { L73: bulkRequestBuilder = client.prepareBulk(); L74: } L75: final String index = fessConfig.getIndexDocumentUpdateIndex(); L76: for (final String id : ids) { L77: bulkRequestBuilder.add(client.prepareUpdate().setIndex(index).setId(id) L78: .setScript(new Scri...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      5K bytes
  5. SearchEngineUtil.java

    params) -> xContent.toXContent(builder, params), mediaType); L54: } L55: L56: public static long scroll(final String index, final Function<SearchHit, Boolean> callback) { L57: final SearchEngineClient client = ComponentUtil.getSearchEngineClient(); L58: return client.<SearchHit> scrollSearch(index, searchRequestBuilder -> true, (searchResponse, hit) -> hit, L59: hit -> callback.apply(hit)); L60: } L61: L62: public static String getXContentString(final ToXContent...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.9K bytes
  6. WebAuthentication.java

    ngUtil; L32:import org.codelibs.fess.Constants; L33:import org.codelibs.fess.app.service.WebConfigService; L34:import org.codelibs.fess.crawler.client.http.Authentication; L35:import org.codelibs.fess.crawler.client.http.form.FormScheme; L36:import org.codelibs.fess.crawler.client.http.impl.AuthenticationImpl; L37:import org.codelibs.fess.crawler.client.http.ntlm.JcifsEngine; L38:import org.codelibs.fess.crawler.exception.CrawlerSystemException; L39:import org.codelibs.fess.es.config.bsentity.BsWebAuthentication;...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      5.8K bytes
  7. lastafluteMap.dfprop

    ; path = [relative path to common project from DBFlute client] L12:# ; freeGenList = list:{ [env or config or label or message or html] } L13:# ; propertiesHtmlList = list:{ [env or config or label or message] } L14:# } L15:# ; appMap = map:{ L16:# ; [application name, camel case, initial uncapitalised] = map:{ L17:# ; path = [relative path to application project from DBFlute client] L18:# ; freeGenList = list:{ [env or config or label...
    github.com/codelibs/fess/dbflute_fess/dfprop/la...
    Sun May 20 08:20:11 UTC 2018
      2.2K bytes
  8. README.md

    L1:cUrl-like Java Client L2:[![Java CI with Maven](https://github.com/codelibs/curl4j/actions/workflows/maven.yml/badge.svg)](https://github.com/codelibs/curl4j/actions/workflows/maven.yml) L3:===================== L4: L5:curl4j is a simple cUrl-like Java client. L6: L7:## Version L8: L9:[Versions in Maven Repository](https://repo1.maven.org/maven2/org/codelibs/curl4j/) L10: L11:## Using Maven L12: L13:Put the following block into pom.xml if using Maven: L14: L15: <dependency> L16: <gr...
    github.com/codelibs/curl4j/README.md
    Sat Feb 19 00:59:27 UTC 2022
      566 bytes
  9. UpgradeUtil.java

    L32:import org.opensearch.action.admin.indices.mapping.put.PutMappingRequestBuilder; L33:import org.opensearch.action.index.IndexRequest; L34:import org.opensearch.action.support.master.AcknowledgedResponse; L35:import org.opensearch.client.Client; L36:import org.opensearch.client.IndicesAdminClient; L37:import org.opensearch.cluster.metadata.MappingMetadata; L38:import org.opensearch.common.xcontent.XContentType; L39:import org.opensearch.core.action.ActionListener; L40: L41:public final class UpgradeUtil...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.1K bytes
  10. es.xml

    L1:<?xml version="1.0" encoding="UTF-8"?> L2:<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" L3: "http://dbflute.org/meta/lastadi10.dtd"> L4:<components> L5: <component name="esClient" L6: class="org.codelibs.fess.es.client.CrawlerEngineClient"> L7: </component> L8:</components>...
    github.com/codelibs/fess/src/main/resources/cra...
    Sat Feb 27 09:26:16 UTC 2021
      272 bytes
Back to top