- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 104 for Scheme (0.04 sec)
-
EditForm.java
specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.dict.protwords; L17: L18:import org.lastaflute.web.validation.Required; L19:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L20: L21:/** L22: * @author ma2tani L23: */ L24:public class EditForm extends CreateForm { L25: L26: @Required L27: @ValidateTypeFailure L28: public Long id; L29: L30: public String getDisplayId() { L31:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1009 bytes -
EditForm.java
the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.elevateword; L17: L18:import org.lastaflute.web.validation.Required; L19:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L20: L21:import jakarta.validation.constraints.Size; L22: L23:/** L24: * @author Keiichi Watanabe L25: */ L26:public class EditForm extends CreateForm { L27: L28: @Required L29: @Size(max = 1000) L30: public...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.1K bytes -
EditForm.java
for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.reqheader; L17: L18:import org.lastaflute.web.validation.Required; L19:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L20: L21:import jakarta.validation.constraints.Size; L22: L23:/** L24: * @author Keiichi Watanabe L25: */ L26:public class EditForm extends CreateForm { L27: L28: @Required L29: @Size(max = 1000) L30: public...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.1K bytes -
EditForm.java
for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.joblog; L17: L18:import org.lastaflute.web.validation.Required; L19:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L20: L21:/** L22: * @author codelibs L23: * @author Shunji Makino L24: */ L25:public class EditForm { L26: L27: @ValidateTypeFailure L28: public int crudMode; L29: L30: @Required L31: @ValidateTypeFailure...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.5K bytes -
EditForm.java
the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.admin.crawlinginfo; L17: L18:import org.lastaflute.web.validation.Required; L19:import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; L20: L21:import jakarta.validation.constraints.Size; L22: L23:/** L24: * @author shinsuke L25: * @author Shunji Makino L26: */ L27:public class EditForm { L28: L29: @ValidateTypeFailure L30: public int crudMode;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.4K bytes -
README.md
[Salesforce](https://github.com/codelibs/fess-ds-salesforce) L76: - [SharePoint](https://github.com/codelibs/fess-ds-sharepoint) L77: - [Slack](https://github.com/codelibs/fess-ds-slack) L78: L79:## Theme L80: L81: - [Simple](https://github.com/codelibs/fess-theme-simple) L82: - [Classic](https://github.com/codelibs/fess-theme-classic) L83: L84:## Ingest L85: L86: - [Logger](https://github.com/codelibs/fess-ingest-logger) L87: - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson) L88: L89:## Script L90: L91:...github.com/codelibs/fess/README.mdSat Oct 12 07:19:47 UTC 2024 7.3K bytes -
.gitignore
ock.db L23:/src/main/webapp/WEB-INF/logs/fess* L24:/.settings/ L25:.project L26:.classpath L27:*.iml L28:.idea L29:.vscode L30:.DS_Store L31:/plugins/ L32:/modules/ L33:/tomcat.8080/ L34:dbflute_fess/output/doc/lastadoc-fess.html L35:dbflute_fess/schema/project-lastadoc-fess.json L36:src/main/resources/fess_indices/fess_config.access_token/access_token.bulk L37:src/main/resources/ga_client_secrets.p12 L38:src/main/webapp/WEB-INF/project.properties L39:/.apt_generated/ L40:/.apt_generated_tests/...github.com/codelibs/fess/.gitignoreThu Oct 24 01:47:10 UTC 2024 1023 bytes -
gsaconfig.xml
L1:<?xml version="1.0" encoding="UTF-8" ?> L2:<eef> L3: <config Schema="2.0" EnterpriseVersion="'7.6.50'"> L4: <collections Count="3"> L5: <collection Name="fess"> L6: <bad_urls><![CDATA[ L7:https://fess.codelibs.org/images/ L8: ]]></bad_urls> L9: <good_urls><![CDATA[ L10:https://fess.codelibs.org/ L11:https://www.codelibs.org/ L12: ]]></good_urls> L13: <prerequisite_results><![CDATA[ L14:20 L15: ]]></prerequisite_results> L16: <testwords><![CDATA[...github.com/codelibs/fess/src/test/resources/dat...Sun May 13 06:51:57 UTC 2018 1.7K bytes -
ThemeHelper.java
closeQuietly(jsPath); L97: } L98: L99: protected String getThemeName(final Artifact artifact) { L100: final String themeName = artifact.getName().substring(ArtifactType.THEME.getId().length() + 1); L101: if (StringUtil.isBlank(themeName)) { L102: throw new ThemeException("Theme name is empty: " + artifact); L103: } L104: return themeName; L105: } L106: L107: protected void closeQuietly(final Path dir) { L108: if (Files.notExists(dir))...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.7K bytes -
README.md
ss-ds-salesforce) L76: - [SharePoint](https://github.com/codelibs/fess-ds-sharepoint) L77: - [Slack](https://github.com/codelibs/fess-ds-slack) L78: L79:## Tema L80: L81: - [Simple](https://github.com/codelibs/fess-theme-simple) L82: - [Classic](https://github.com/codelibs/fess-theme-classic) L83: L84:## Ingesta L85: L86: - [Logger](https://github.com/codelibs/fess-ingest-logger) L87: - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson) L88: L89:## Script L90: L91: - [Groovy](https://githu...github.com/codelibs/fess/docs/es/README.mdSat Oct 12 07:19:47 UTC 2024 7.6K bytes