Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 270 for inputMs (0.07 seconds)

  1. src/main/webapp/WEB-INF/view/admin/dict/protwords/admin_dict_protwords_edit.jsp

                                        <label for="input" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.dict_protwords_source"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="input"/>
                                            <la:text styleId="input" property="input"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7K bytes
    - Click Count (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            for (ProtwordsItem item : list) {
                String input = item.getInput();
                if (input.contains("test") && input.contains("t1")) {
                    foundTab = true;
                } else if (input.contains("test") && input.contains("n2")) {
                    foundNewline = true;
                } else if (input.equals("test3")) {
                    foundTest3 = true;
                }
            }
    
    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)
  10. 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)
Back to Top