Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 320 for Docstring (0.06 sec)

  1. DocumentHelper.java

    buf.append(prefix).append(1).append(':').append(values[0]); L261: for (int i = 1; i < values.length; i++) { L262: buf.append('\n').append(prefix).append(i + 1).append(':').append(values[i]); L263: } L264: return buf.toString(); L265: } L266:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12K bytes
  2. CrawlingInfoService.java

    list.add(StringUtil.EMPTY); L288: } else if (value instanceof LocalDateTime) { L289: list.add(((LocalDateTime) value).format(formatter)); L290: } else { L291: list.add(value.toString()); L292: } L293: } L294: }); L295: csvWriter.flush(); L296: } catch (final IOException e) { L297: logger.warn("Failed to write a crawling session info.", e); L298: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.4K bytes
  3. ElevateWordService.java

    private void addToList(final List<String> list, final Object value) { L313: if (value == null) { L314: list.add(StringUtil.EMPTY); L315: } else { L316: list.add(value.toString()); L317: } L318: } L319: }); L320: L321: csvWriter.flush(); L322: } catch (final IOException e) { L323: logger.warn("Failed to write a sugget elevate word.", e); L324: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.5K bytes
  4. SearchAction.java

    buf.append(' '); L218: buf.append(map.get(Constants.ITEM_LABEL)); L219: break; L220: } L221: } L222: } L223: } L224: return buf.toString(); L225: } L226: L227: protected void createPagingQuery(final SearchForm form) { L228: final List<String> pagingQueryList = new ArrayList<>(); L229: if (form.ex_q != null) { L230: stream(form.ex_q).of(stream -> str...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.3K bytes
  5. CrawlTestBase.java

    ArrayList<>(); L218: for (Map<String, Object> elem : logList) { L219: logger.info("config_id: {}, thread_name: {}", configId, elem.get("thread_name")); L220: if (elem.containsKey("thread_name") && elem.get("thread_name").toString().startsWith("Crawler-" + configId.replace('-', '_'))) { L221: resList.add(elem); L222: } L223: } L224: return resList; L225: } L226:}...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  6. AdminFileauthAction.java

    List<FileConfig> fileConfigList = crawlingConfigHelper.getAllFileConfigList(false, false, false, null); L305: for (final FileConfig fileConfig : fileConfigList) { L306: itemList.add(createItem(fileConfig.getName(), fileConfig.getId().toString())); L307: } L308: RenderDataUtil.register(data, "fileConfigItems", itemList); L309: } L310: L311: protected Map<String, String> createItem(final String label, final String value) { L312: final Map<String, String> map =...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.5K bytes
  7. AdminReqheaderAction.java

    final List<WebConfig> webConfigList = crawlingConfigHelper.getAllWebConfigList(false, false, false, null); L295: for (final WebConfig webConfig : webConfigList) { L296: itemList.add(createItem(webConfig.getName(), webConfig.getId().toString())); L297: } L298: RenderDataUtil.register(data, "webConfigItems", itemList); L299: } L300: L301: protected Map<String, String> createItem(final String label, final String value) { L302: final Map<String, String> map =...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.6K bytes
  8. SamlAuthenticator.java

    params = new HashMap<>(defaultSettings); L117: final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); L118: systemProperties.entrySet().stream().forEach(e -> { L119: final String key = e.getKey().toString(); L120: if (!key.startsWith(SAML_PREFIX)) { L121: return; L122: } L123: params.put("onelogin.saml2." + key.substring(SAML_PREFIX.length()), e.getValue()); L124: }); L125: return new ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.2K bytes
  9. bootstrap.min.js

    ion(t){-1!==je.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,{},e,{},"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(Ae,t,this.constructor.DefaultType),t.sanitize&&(t.template=we(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.const...
    github.com/codelibs/fess/src/main/webapp/js/boo...
    Fri Feb 07 10:28:50 UTC 2020
      58.6K bytes
  10. IndexingHelper.java

    null && !idValue.equals(oldIdValue)) { L140: final Object oldDocIdValue = doc.get(fessConfig.getIndexFieldDocId()); L141: if (oldDocIdValue != null) { L142: docIdList.add(oldDocIdValue.toString()); L143: } L144: } L145: } L146: if (logger.isDebugEnabled()) { L147: logger.debug("{} => {}", queryBuilder, docs); L148: } L149: } L150: if (!docIdList.isEmpty())...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      16.8K bytes
Back to top