Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 197 for kInput (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

        /**
         * Processes and saves an image from the input stream to the output file as a thumbnail.
         *
         * <p>This method reads image data, validates dimensions, applies subsampling and scaling
         * transformations based on configuration settings, and writes the processed thumbnail
         * to the specified output file.</p>
         *
         * @param input the image input stream containing the source image data
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java

        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Input terms (comma-separated) that will be mapped to the output term */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** Output term that input terms will be mapped to */
        @Size(min = 1, 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)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            }
        }
    
        /**
         * Reloads the stemmer override dictionary from an input stream.
         *
         * @param updater An optional updater to apply changes.
         * @param in      The input stream to read the dictionary from.
         * @throws DictionaryException if the input stream cannot be parsed.
         */
        protected void reload(final StemmerOverrideUpdater updater, final InputStream in) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            StopwordsItem item3 = new StopwordsItem(1, "word");
    
            // Two items with null input should be equal
            assertTrue(item1.equals(item2));
    
            // Item with null input should not equal item with non-null input
            assertFalse(item3.equals(item1));
            assertFalse(item1.equals(item3));
    
            // Symmetry
            assertTrue(item1.equals(item2));
            assertTrue(item2.equals(item1));
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="depth"/>
                                            <input type="number" name="depth" id="depth"
                                                   value="${f:h(depth)}" class="form-control"
                                                   min="0" max="10000">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/JobProcess.java

     * This class provides access to the underlying process and manages
     * the input stream thread for capturing process output.
     */
    public class JobProcess {
        /**
         * The underlying system process.
         */
        protected Process process;
    
        /**
         * The thread that handles reading from the process input stream.
         */
        protected InputStreamThread inputStreamThread;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/orig/view/login/index.jsp

    				</div>
    				<la:form styleId="login" method="post">
    					<div class="input-group mb-3">
    						<c:set var="ph_username">
    							<la:message key="labels.login.placeholder_username" />
    						</c:set>
    						<la:text property="username" styleId="username"
    							class="form-control" placeholder="${ph_username}" />
    						<div class="input-group-append">
    							<span class="input-group-text">
    								<i class="fa fa-user fa-fw" aria-hidden="true"></i>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @CustomSize(maxKey = "form.admin.max.input.size")
        public String paths;
    
        /** The paths to include during crawling (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        /** The paths to exclude during crawling (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            String[] input = { "a", "b", "a", "c", "b" };
            String[] result = SearchRequestParams.simplifyArray(input);
            assertEquals(3, result.length);
            assertEquals("a", result[0]);
            assertEquals("b", result[1]);
            assertEquals("c", result[2]);
        }
    
        @Test
        public void test_simplifyArray_withBlanks() {
            String[] input = { "a", "", "b", "  ", null, "c" };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  10. src/main/webapp/js/login.js

    $(function() {
      var $firstInput = $('input[type="text"],select,textarea', ".login-box,section.content").first();
      var $errorInput = $(".form-group .has-error").first().next("input,select,textarea");
    
      if ($errorInput.length) {
        $errorInput.focus();
      } else {
        $firstInput.focus();
      }
    
      $("section.content input").on("keypress", function(e) {
        if (e.which === 13) {
          var $submitButton = $("input#submit, button#submit");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.3K bytes
    - Click Count (0)
Back to Top