Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 192 for Scheme (0.04 sec)

  1. CreateForm.java

    permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.dict.synonym; L17: L18:import org.codelibs.fess.app.web.CrudMode; L19:import org.lastaflute.web.validation.Required; L20:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L21: L22:import jakarta.validation.constraints.Size; L23: L24:/** L25: * @author shinsuke L26: * @author Keiichi Watanabe L27: */ L28:public class CreateForm { L29: L30: @Required L31: public String dictId; L32:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.2K bytes
  2. CreateForm.java

    permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.dict.mapping; L17: L18:import org.codelibs.fess.app.web.CrudMode; L19:import org.lastaflute.web.validation.Required; L20:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L21: L22:import jakarta.validation.constraints.Size; L23: L24:/** L25: * @author nullpos L26: * @author ma2tani L27: */ L28:public class CreateForm { L29: L30: @Required L31: public String dictId; L32: L33: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.2K bytes
  3. SearchBody.java

    language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.api.admin.searchlist; L17: L18:import org.codelibs.fess.app.web.admin.searchlist.ListForm; L19:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L20: L21:public class SearchBody extends ListForm { L22: L23: // `size` is an alias of `num`. L24: // `size` is prepared to be compatible with other Admin APIs L25: @ValidateTypeFailure L26: public Integer...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      1.2K bytes
  4. CreateForm.java

    L16:package org.codelibs.fess.app.web.admin.relatedquery; L17: L18:import org.codelibs.fess.app.web.CrudMode; L19:import org.codelibs.fess.util.ComponentUtil; L20:import org.lastaflute.web.validation.Required; L21:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L22: L23:import jakarta.validation.constraints.Size; L24: L25:public class CreateForm { L26: L27: @ValidateTypeFailure L28: public Integer crudMode; L29: L30: @Required L31: @Size(max = 10000) L32: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.5K bytes
  5. README.md

    fess-ds-salesforce) L75: - [SharePoint](https://github.com/codelibs/fess-ds-sharepoint) L76: - [Slack](https://github.com/codelibs/fess-ds-slack) L77: L78:## 主题 L79: L80: - [Simple](https://github.com/codelibs/fess-theme-simple) L81: - [Classic](https://github.com/codelibs/fess-theme-classic) L82: L83:## 数据处理 L84: L85: - [Logger](https://github.com/codelibs/fess-ingest-logger) L86: - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson) L87: L88:## 脚本 L89: L90: - [Groovy](https://github.com/c...
    github.com/codelibs/fess/docs/zh-CN/README.md
    Sat Oct 12 07:19:47 UTC 2024
      6.8K bytes
  6. CreateForm.java

    L16:package org.codelibs.fess.app.web.admin.reqheader; L17: L18:import org.codelibs.fess.app.web.CrudMode; L19:import org.codelibs.fess.util.ComponentUtil; L20:import org.lastaflute.web.validation.Required; L21:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L22: L23:import jakarta.validation.constraints.Size; L24: L25:/** L26: * @author codelibs L27: * @author Shunji Makino L28: * @author Keiichi Watanabe L29: */ L30:public class CreateForm { L31: L32: @ValidateTypeFailure...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.6K bytes
  7. CreateForm.java

    org.codelibs.fess.validation.CustomSize; L23:import org.codelibs.fess.validation.UriType; L24:import org.codelibs.fess.validation.UriTypeValidator.ProtocolType; L25:import org.lastaflute.web.validation.Required; L26:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L27: L28:import jakarta.validation.constraints.Max; L29:import jakarta.validation.constraints.Min; L30:import jakarta.validation.constraints.Size; L31: L32:/** L33: * @author codelibs L34: * @author Keiichi Watanabe...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.9K bytes
  8. deploy_website.sh

    L1:#!/bin/bash L2: L3:# The website is built using MkDocs with the Material theme. L4:# https://squidfunk.github.io/mkdocs-material/ L5:# It requires python3 to run. L6: L7:set -ex L8: L9:REPO="git@github.com:square/okhttp.git" L10:DIR=temp-clone L11: L12:# Delete any existing temporary website clone L13:rm -rf $DIR L14: L15:# Clone the current repo into temp folder L16:git clone $REPO $DIR L17:# Replace `git clone` with these lines to hack on the website locally L18:# cp -a . "../okhttp-website"...
    github.com/square/okhttp/deploy_website.sh
    Mon Nov 20 15:26:12 UTC 2023
      1.2K bytes
  9. CreateForm.java

    L16:package org.codelibs.fess.app.web.admin.boostdoc; L17: L18:import org.codelibs.fess.app.web.CrudMode; L19:import org.codelibs.fess.util.ComponentUtil; L20:import org.lastaflute.web.validation.Required; L21:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L22: L23:import jakarta.validation.constraints.Max; L24:import jakarta.validation.constraints.Min; L25:import jakarta.validation.constraints.Size; L26: L27:public class CreateForm { L28: L29: @ValidateTypeFailure...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.7K bytes
  10. CreateForm.java

    */ L16:package org.codelibs.fess.app.web.admin.webauth; L17: L18:import org.codelibs.fess.app.web.CrudMode; L19:import org.codelibs.fess.util.ComponentUtil; L20:import org.lastaflute.web.validation.Required; L21:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L22: L23:import jakarta.validation.constraints.Max; L24:import jakarta.validation.constraints.Min; L25:import jakarta.validation.constraints.Size; L26: L27:/** L28: * @author codelibs L29: * @author Shunji Makino L30:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.9K bytes
Back to top