Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for Hase (0.05 sec)

  1. AdminEsreqAction.java

    final CurlHelper curlHelper = ComponentUtil.getCurlHelper(); L144: switch (values[0].toUpperCase(Locale.ROOT)) { L145: case "GET": L146: return curlHelper.get(path); L147: case "POST": L148: return curlHelper.post(path); L149: case "PUT": L150: return curlHelper.put(path); L151: case "DELETE": L152: return curlHelper.delete(path); L153: default: L154: break; L155: } L156: return null;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.2K bytes
  2. AdminDictProtwordsAction.java

    rdsPager; L29:import org.codelibs.fess.app.service.ProtwordsService; L30:import org.codelibs.fess.app.web.CrudMode; L31:import org.codelibs.fess.app.web.admin.dict.AdminDictAction; L32:import org.codelibs.fess.app.web.base.FessAdminAction; L33:import org.codelibs.fess.app.web.base.FessBaseAction; L34:import org.codelibs.fess.dict.protwords.ProtwordsItem; L35:import org.codelibs.fess.util.ComponentUtil; L36:import org.codelibs.fess.util.RenderDataUtil; L37:import org.dbflute.optional.OptionalEntity;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      17.2K bytes
  3. AdminDuplicatehostAction.java

    CreateForm form, final String username, final long currentTime) { L249: switch (form.crudMode) { L250: case CrudMode.CREATE: L251: return OptionalEntity.of(new DuplicateHost()).map(entity -> { L252: entity.setCreatedBy(username); L253: entity.setCreatedTime(currentTime); L254: return entity; L255: }); L256: case CrudMode.EDIT: L257: if (form instanceof EditForm) { L258: return ComponentUtil.g...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.3K bytes
  4. AdminKeymatchAction.java

    CreateForm form, final String username, final long currentTime) { L264: switch (form.crudMode) { L265: case CrudMode.CREATE: L266: return OptionalEntity.of(new KeyMatch()).map(entity -> { L267: entity.setCreatedBy(username); L268: entity.setCreatedTime(currentTime); L269: return entity; L270: }); L271: case CrudMode.EDIT: L272: if (form instanceof EditForm) { L273: return ComponentUtil.getC...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.5K bytes
  5. OpenIdConnectAuthenticator.java

    L208: final JsonToken token = jsonParser.getCurrentToken(); L209: return switch (token) { L210: case VALUE_STRING -> jsonParser.getText(); L211: case VALUE_NUMBER_INT -> jsonParser.getLongValue(); L212: case VALUE_NUMBER_FLOAT -> jsonParser.getDoubleValue(); L213: case VALUE_TRUE -> true; L214: case VALUE_FALSE -> false; L215: case VALUE_NULL -> null; L216: default -> null; // Or throw an exception if unexpected token L217: }; L218:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.3K bytes
  6. AdminDictStopwordsAction.java

    ============ L322: L323: private static OptionalEntity<StopwordsItem> getEntity(final CreateForm form) { L324: switch (form.crudMode) { L325: case CrudMode.CREATE: L326: final StopwordsItem entity = new StopwordsItem(0, StringUtil.EMPTY); L327: return OptionalEntity.of(entity); L328: case CrudMode.EDIT: L329: if (form instanceof EditForm) { L330: return ComponentUtil.getComponent(StopwordsService.class).getStopwordsItem(form.dictId,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.7K bytes
  7. AdminGroupAction.java

    OptionalEntity<Group> getEntity(final CreateForm form) { L256: switch (form.crudMode) { L257: case CrudMode.CREATE: L258: return OptionalEntity.of(new Group()).map(entity -> { L259: entity.setId(Base64.getUrlEncoder().encodeToString(form.name.getBytes(Constants.CHARSET_UTF_8))); L260: return entity; L261: }); L262: case CrudMode.EDIT: L263: if (form instanceof EditForm) { L264: return ComponentUtil....
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13.2K bytes
  8. AdminPathmapAction.java

    CreateForm form, final String username, final long currentTime) { L250: switch (form.crudMode) { L251: case CrudMode.CREATE: L252: return OptionalEntity.of(new PathMapping()).map(entity -> { L253: entity.setCreatedBy(username); L254: entity.setCreatedTime(currentTime); L255: return entity; L256: }); L257: case CrudMode.EDIT: L258: if (form instanceof EditForm) { L259: return ComponentUtil.ge...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      13K bytes
  9. AdminRelatedqueryAction.java

    CreateForm form, final String username, final long currentTime) { L265: switch (form.crudMode) { L266: case CrudMode.CREATE: L267: return OptionalEntity.of(new RelatedQuery()).map(entity -> { L268: entity.setCreatedBy(username); L269: entity.setCreatedTime(currentTime); L270: return entity; L271: }); L272: case CrudMode.EDIT: L273: if (form instanceof EditForm) { L274: return ComponentUtil.ge...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      14.1K bytes
  10. AdminDataconfigAction.java

    CreateForm form, final String username, final long currentTime) { L293: switch (form.crudMode) { L294: case CrudMode.CREATE: L295: return OptionalEntity.of(new DataConfig()).map(entity -> { L296: entity.setCreatedBy(username); L297: entity.setCreatedTime(currentTime); L298: return entity; L299: }); L300: case CrudMode.EDIT: L301: if (form instanceof EditForm) { L302: return ComponentUtil.get...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      17.5K bytes
Back to top