Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for cannot (0.12 sec)

  1. EsAbstractConditionAggregation.java

    String && ((String) value).isEmpty())) { L238: String msg = "Cannot register null or empty aggregation: name=" + name + " value=" + value; L239: throw new InvalidQueryRegisteredException(msg); L240: } L241: } L242: L243: protected void checkEsInvalidAggregationCollection(String name, Collection<?> values) { L244: if (values == null || values.isEmpty()) { L245: String msg = "Cannot register null or empty query collection: name=" + name + " values="...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12.4K bytes
  2. CustomSizeValidator.java

    validateParameters() { L61: if (min < 0) { L62: throw new IllegalArgumentException("The min parameter cannot be negative."); L63: } L64: if (max < 0) { L65: throw new IllegalArgumentException("The max parameter cannot be negative."); L66: } L67: if (max < min) { L68: throw new IllegalArgumentException("The length cannot be negative."); L69: } L70: } L71:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.8K bytes
  3. BsCrawlingInfoBhv.java

    L79: result.setSessionId(DfTypeUtil.toString(source.get("sessionId"))); L80: return updateEntity(source, result); L81: } catch (InstantiationException | IllegalAccessException e) { L82: final String msg = "Cannot create a new instance: " + entityType.getName(); L83: throw new IllegalBehaviorStateException(msg, e); L84: } L85: } L86: L87: protected <RESULT extends CrawlingInfo> RESULT updateEntity(Map<String, Object> source, RESULT result)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.5K bytes
  4. BsElevateWordToLabelBhv.java

    L77: result.setLabelTypeId(DfTypeUtil.toString(source.get("labelTypeId"))); L78: return updateEntity(source, result); L79: } catch (InstantiationException | IllegalAccessException e) { L80: final String msg = "Cannot create a new instance: " + entityType.getName(); L81: throw new IllegalBehaviorStateException(msg, e); L82: } L83: } L84: L85: protected <RESULT extends ElevateWordToLabel> RESULT updateEntity(Map<String, Object> source, RESULT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.7K bytes
  5. BsJobLogBhv.java

    e"))); L84: result.setTarget(DfTypeUtil.toString(source.get("target"))); L85: return updateEntity(source, result); L86: } catch (InstantiationException | IllegalAccessException e) { L87: final String msg = "Cannot create a new instance: " + entityType.getName(); L88: throw new IllegalBehaviorStateException(msg, e); L89: } L90: } L91: L92: protected <RESULT extends JobLog> RESULT updateEntity(Map<String, Object> source, RESULT result)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.5K bytes
  6. BsRoleTypeBhv.java

    ime"))); L82: result.setValue(DfTypeUtil.toString(source.get("value"))); L83: return updateEntity(source, result); L84: } catch (InstantiationException | IllegalAccessException e) { L85: final String msg = "Cannot create a new instance: " + entityType.getName(); L86: throw new IllegalBehaviorStateException(msg, e); L87: } L88: } L89: L90: protected <RESULT extends RoleType> RESULT updateEntity(Map<String, Object> source, RESULT result)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.5K bytes
  7. BsThumbnailQueueBhv.java

    L81: result.setThumbnailId(DfTypeUtil.toString(source.get("thumbnail_id"))); L82: return updateEntity(source, result); L83: } catch (InstantiationException | IllegalAccessException e) { L84: final String msg = "Cannot create a new instance: " + entityType.getName(); L85: throw new IllegalBehaviorStateException(msg, e); L86: } L87: } L88: L89: protected <RESULT extends ThumbnailQueue> RESULT updateEntity(Map<String, Object> source, RESULT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.8K bytes
  8. BsFileAuthenticationBhv.java

    ); L86: result.setUsername(DfTypeUtil.toString(source.get("username"))); L87: return updateEntity(source, result); L88: } catch (InstantiationException | IllegalAccessException e) { L89: final String msg = "Cannot create a new instance: " + entityType.getName(); L90: throw new IllegalBehaviorStateException(msg, e); L91: } L92: } L93: L94: protected <RESULT extends FileAuthentication> RESULT updateEntity(Map<String, Object> source, RESULT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.4K bytes
  9. BsFileConfigBhv.java

    L97: result.setVirtualHosts(toStringArray(source.get("virtualHosts"))); L98: return updateEntity(source, result); L99: } catch (InstantiationException | IllegalAccessException e) { L100: final String msg = "Cannot create a new instance: " + entityType.getName(); L101: throw new IllegalBehaviorStateException(msg, e); L102: } L103: } L104: L105: protected <RESULT extends FileConfig> RESULT updateEntity(Map<String, Object> source, RESULT...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.8K bytes
  10. SearchLogBhv.java

    derList().add(new Pair<>(e.getKey(), e.getValue().toString())); L104: } L105: }); L106: } L107: return result; L108: } catch (final Exception e) { L109: final String msg = "Cannot create a new instance: " + entityType.getName(); L110: throw new IllegalBehaviorStateException(msg, e); L111: } L112: } L113: L114:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.8K bytes
Back to top