Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for Falque (0.03 sec)

  1. ParameterUtilTest.java

    test_encryptParameter() { L183: String value; L184: String expect; L185: L186: value = null; L187: expect = ""; L188: assertEquals(expect, ParameterUtil.encrypt(value)); L189: L190: value = ""; L191: expect = ""; L192: assertEquals(expect, ParameterUtil.encrypt(value)); L193: L194: value = "\n"; L195: expect = ""; L196: assertEquals(expect, ParameterUtil.encrypt(value)); L197: L198: value = "="; L199: expect = "unknown.1=";...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  2. BsScheduledJob.java

    available; L178: } L179: L180: public void setAvailable(Boolean value) { L181: registerModifiedProperty("available"); L182: this.available = value; L183: } L184: L185: public Boolean getCrawler() { L186: checkSpecifiedProperty("crawler"); L187: return crawler; L188: } L189: L190: public void setCrawler(Boolean value) { L191: registerModifiedProperty("crawler"); L192: this.crawler = value; L193: } L194: L195: public String getCreatedBy() { L196:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.3K bytes
  3. ParamMap.java

    @Override L73: public boolean containsValue(final Object value) { L74: return parent.containsValue(value); L75: } L76: L77: @Override L78: public V get(final Object key) { L79: final V value = parent.get(key); L80: if (value != null) { L81: return value; L82: } L83: return parent.get(toCamelCase(key)); L84: } L85: L86: @Override L87: public V put(final K key, final V value) { L88: return parent.put(key, value); L89: } L90:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.3K bytes
  4. BsAccessToken.java

    } L151: L152: public void setCreatedBy(String value) { L153: registerModifiedProperty("createdBy"); L154: this.createdBy = value; L155: } L156: L157: public Long getCreatedTime() { L158: checkSpecifiedProperty("createdTime"); L159: return createdTime; L160: } L161: L162: public void setCreatedTime(Long value) { L163: registerModifiedProperty("createdTime"); L164: this.createdTime = value; L165: } L166: L167: public Long getExpiredTime()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.5K bytes
  5. BsRelatedContent.java

    } L164: L165: public void setCreatedTime(Long value) { L166: registerModifiedProperty("createdTime"); L167: this.createdTime = value; L168: } L169: L170: public Integer getSortOrder() { L171: checkSpecifiedProperty("sortOrder"); L172: return sortOrder; L173: } L174: L175: public void setSortOrder(Integer value) { L176: registerModifiedProperty("sortOrder"); L177: this.sortOrder = value; L178: } L179: L180: public String getTerm() {...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  6. BsThumbnailQueue.java

    } L130: L131: public void setCreatedBy(String value) { L132: registerModifiedProperty("createdBy"); L133: this.createdBy = value; L134: } L135: L136: public Long getCreatedTime() { L137: checkSpecifiedProperty("createdTime"); L138: return createdTime; L139: } L140: L141: public void setCreatedTime(Long value) { L142: registerModifiedProperty("createdTime"); L143: this.createdTime = value; L144: } L145: L146: public String getGenerator()...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.2K bytes
  7. QueryStringBuilder.java

    sortField; L43: L44: protected String quote(final String value) { L45: if (value.split("\\s").length > 1) { L46: return new StringBuilder().append('"').append(value.replace('"', ' ')).append('"').toString(); L47: } L48: return value; L49: } L50: L51: protected String escapeQuery(final String value) { L52: if (!escape) { L53: return value; L54: } L55: L56: String newValue = value; L57: for (final String element : Constants.RESERVED)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.7K bytes
  8. FessBoot.java

    protected static int getPort() { L124: final String value = System.getProperty(FESS_PORT); L125: if (value != null) { L126: return Integer.parseInt(value); L127: } L128: return 8080; L129: } L130: L131: protected static String getContextPath() { L132: final String value = System.getProperty(FESS_CONTEXT_PATH); L133: if (value != null && !"/".equals(value)) { L134: return value; L135: } L136: return StringUtil.EMPTY; L137:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      8K bytes
  9. FieldConfigs.java

    getConfig(final String fieldName) { L35: final String value = params.get(fieldName); L36: if (StringUtil.isNotBlank(value)) { L37: return OptionalThing.of(new Config(value)); L38: } L39: return OptionalThing.empty(); L40: } L41: L42: public static class Config { L43: L44: private final String[] values; L45: L46: public Config(final String value) { L47: values = StreamUtil.split(value, Pattern.quote("|")).get(stream -> stream.map(String::trim).toArray(n...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2.3K bytes
  10. CreateForm.java

    L70: public String configParameter; L71: L72: @Min(value = 0) L73: @Max(value = 2147483647) L74: @ValidateTypeFailure L75: public Integer depth; L76: L77: @Min(value = 0) L78: @Max(value = 9223372036854775807L) L79: @ValidateTypeFailure L80: public Long maxAccessCount; L81: L82: @Required L83: @Size(max = 200) L84: public String userAgent; L85: L86: @Required L87: @Min(value = 1) L88: @Max(value = 2147483647) L89: @ValidateTypeFailure L90: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      4.2K bytes
Back to top