- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 270 for inputs2 (0.04 seconds)
-
src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride_edit.jsp
<label for="input" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.dict_stemmeroverride_source"/></label> <div class="col-sm-9"> <la:errors property="input"/> <la:text styleId="input" property="input" styleClass="form-control"/>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/CreateForm.java
/** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The input word that should be stemmed differently */ @Required @Size(max = 1000) public String input; /** The desired stem output for the input word */ @Required @Size(max = 1000) public String output; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.8K bytes - Click Count (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/PreparePatchReleaseTest.groovy
import spock.lang.Specification class PreparePatchReleaseTest extends Specification { def "patch version is correctly bumped"() { expect: ReleasedVersionsHelperKt.bumpPatchVersion(input) == expected where: input | expected "9.4.0" | "9.4.1" "9.4.1" | "9.4.2" "8.0.0" | "8.0.1" "1.2.3" | "1.2.4" } def "invalid version format is rejected"() { when:Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:47:12 GMT 2026 - 1.3K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLexer.java
* limitations under the License. */ package gradlebuild.docs.dsl.docbook; public interface JavadocLexer { /** * Visits the tokens in the input stream for this lexer. Reads to the end of the input. */ void visit(TokenVisitor visitor); class TokenVisitor { void onStartHtmlElement(String name) { }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 1.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java
ldapManager.init(); // Test all special characters together (note: = is not escaped per RFC 4515) String input = "\\*()\0"; String expected = "\\5c\\2a\\28\\29\\00"; assertEquals(expected, ldapManager.escapeLDAPSearchFilter(input)); } // ======================================================================== // Tests for Defensive Null/Blank Checks
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/IndexExportJob.java
} } private String hashString(final String input) { try { final MessageDigest md = MessageDigest.getInstance("SHA-256"); final byte[] hash = md.digest(input.getBytes(StandardCharsets.UTF_8)); final StringBuilder sb = new StringBuilder(); for (final byte b : hash) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
*/ @CustomSize(maxKey = "form.admin.max.input.size") public String includedPaths; /** * The paths to exclude for this label type. */ @CustomSize(maxKey = "form.admin.max.input.size") public String excludedPaths; /** * The permissions required to view this label type. */ @CustomSize(maxKey = "form.admin.max.input.size") public String permissions; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 21.2K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}"> </div> </div> <div class="mb-3 row"> <label for="as_epq" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message key="labels.advance_search_phrase_query" /></label> <div class="col-lg-5 col-md-8 col-sm-7 col-6">
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 14.2K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
.any(gradle.startParameter.taskNames::contains) /** * Returns a new provider that takes its value from at most one * of the given providers. If no input provider is present, the output * provider will not be present. If more than one input provider * has a value specified, the resulting provider will throw an * exception when queried. */ fun <T: Any> atMostOneOf(vararg providers: Provider<T>): Provider<T> {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:46:35 GMT 2026 - 5.8K bytes - Click Count (0)