Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for doinit (0.06 sec)

  1. QueryFieldConfig.java

    L65: L66: protected Set<String> apiResponseFieldSet; L67: L68: protected Set<String> notAnalyzedFieldSet; L69: L70: protected List<Pair<String, Float>> additionalDefaultList = new ArrayList<>(); L71: L72: @PostConstruct L73: public void init() { L74: if (logger.isDebugEnabled()) { L75: logger.debug("Initialize {}", this.getClass().getSimpleName()); L76: } L77: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L78: if (responseFields ==...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 04:30:56 UTC 2024
      16K bytes
  2. openapi-user.yaml

    facets L127: required: false L128: schema: L129: type: integer L130: minimum: 0 L131: exclusiveMinimum: false L132: default: 0 L133: example: 0 L134: - name: geo.location.point L135: in: query L136: description: Latitude and Longitude for Geo search L137: required: false L138: schema: L139: type: string L140: example: 35.0,139.0 L141: - name: geo.location.distance...
    github.com/codelibs/fess/src/main/config/openap...
    Thu May 09 06:31:27 UTC 2024
      21.6K bytes
  3. QueryParser.java

    allowLeadingWildcard = true; L43: L44: protected Operator defaultOperator = Operator.AND; L45: L46: protected List<Filter> filterList = new ArrayList<>(); L47: L48: protected FilterChain filterChain; L49: L50: @PostConstruct L51: public void init() { L52: createFilterChain(); L53: } L54: L55: public Query parse(final String query) { L56: return filterChain.parse(query); L57: } L58: L59: protected org.apache.lucene.queryparser.classic.QueryParser createQueryParser()...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      5.6K bytes
  4. codeql.yml

    scanning-for-compiled-languages L59: steps: L60: - name: Checkout repository L61: uses: actions/checkout@v4 L62: L63: # Initializes the CodeQL tools for scanning. L64: - name: Initialize CodeQL L65: uses: github/codeql-action/init@v3 L66: with: L67: languages: ${{ matrix.language }} L68: build-mode: ${{ matrix.build-mode }} L69: # If you wish to specify custom queries, you can do so here or in a config file. L70: # By default, queries listed...
    github.com/codelibs/fess/.github/workflows/code...
    Wed Aug 14 23:51:19 UTC 2024
      4.4K bytes
  5. pom.xml

    <mapper> L543: <type>perm</type> L544: <user>root</user> L545: <group>root</group> L546: </mapper> L547: </data> L548: <!-- Add init.d files --> L549: <data> L550: <type>file</type> L551: <src>${project.build.directory}/generated-packaging/deb/init.d/fess</src> L552: <dst>/etc/init.d/fess</dst> L553: <mapper> L554: <type>perm</type> L555: <filemode>755</filemode> L556: <user>root</user> L557: <group>root</group>...
    github.com/codelibs/fess/pom.xml
    Sat Oct 26 02:16:03 UTC 2024
      49.1K bytes
  6. SuggestHelper.java

    = new HashSet<>(); L81: L82: protected List<String> contentFieldList; L83: L84: protected PopularWordHelper popularWordHelper = null; L85: L86: protected long searchStoreInterval = 1; // min L87: L88: @PostConstruct L89: public void init() { L90: if (logger.isDebugEnabled()) { L91: logger.debug("Initialize {}", this.getClass().getSimpleName()); L92: } L93: fessConfig = ComponentUtil.getFessConfig(); L94: split(fessConfig.getSuggestFieldContents(),...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  7. Crawler.java

    SingletonLaContainerFactory.setExternalContext(new GenericExternalContext()); L228: SingletonLaContainerFactory.setExternalContextComponentDefRegister(new GenericExternalContextComponentDefRegister()); L229: SingletonLaContainerFactory.init(); L230: L231: final Thread shutdownCallback = new Thread("ShutdownHook") { L232: @Override L233: public void run() { L234: destroyContainer(); L235: } L236: L237: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24K bytes
  8. jquery-3.7.1.min.js

    ttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}function fe(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}ce.fn=ce.prototype={jquery:t,co...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:07:52 UTC 2024
      85.5K bytes
  9. OpenIdConnectAuthenticator.java

    String OIC_STATE = "OIC_STATE"; L81: L82: protected final HttpTransport httpTransport = new NetHttpTransport(); L83: L84: protected final JsonFactory jsonFactory = GsonFactory.getDefaultInstance(); L85: L86: @PostConstruct L87: public void init() { L88: if (logger.isDebugEnabled()) { L89: logger.debug("Initialize {}", this.getClass().getSimpleName()); L90: } L91: ComponentUtil.getSsoManager().register(this); L92: } L93: L94: @Override L95: public LoginCredential...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.3K bytes
  10. RankFusionProcessor.java

    RankFusionSearcher[] searchers = new RankFusionSearcher[1]; L68: L69: protected ExecutorService executorService; L70: L71: protected int windowSize; L72: L73: protected Set<String> availableSearcherNameSet; L74: L75: @PostConstruct L76: public void init() { L77: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L78: final int maxPageSize = fessConfig.getPagingSearchPageMaxSizeAsInteger(); L79: final int windowSize = fessConfig.getRankFusionWindowSizeAsInteger(); L80:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
Back to top