Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 119 for padded (0.03 seconds)

  1. .teamcity/mvnw.cmd

    @REM M2_HOME - location of maven2's installed home dir
    @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
    @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
    @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
    @REM     e.g. to debug Maven itself, use
    @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
    @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            try {
                WebApiUtil.setError(500, (Exception) null);
                fail("setError should throw NullPointerException when passed null exception");
            } catch (NullPointerException e) {
                // Expected - WebApiException constructor cannot handle null exception
                assertTrue("Should get expected NPE message",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            doc.put("title", "タイトル");
            doc.put("content", "コンテンツ");
    
            languageHelper.updateDocument(doc);
    
            assertEquals("ja", doc.get("lang"));
            // No fields should be added since langFields is empty
            assertNull(doc.get("title_ja"));
            assertNull(doc.get("content_ja"));
        }
    
        @Test
        public void test_createScript_noLangFields() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            assertTrue(pythonJob.sessionId.length() >= 10);
    
            // The test doesn't actually call the real process since ServletContext.getRealPath returns null in test
            // and causes an exception which is caught and added to result
            assertTrue(result.contains("Session Id:"));
        }
    
        // Test execute with custom session ID
        @Test
        public void test_execute_withCustomSessionId() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  5. ADDING_NEW_LANGUAGE.md

    - [ ] (Optional) Add custom dictionaries for search analysis
    - [ ] Verify all UI pages display correctly in new language
    - [ ] Test error messages and form validation
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
  6. CONTRIBUTING.md

    This button will cause a Javascript alert dialog to appear asking you to type a reason for accepting the changes, e.g. "Added new API for Gradle 8.x".
    
    Clicking okay on the dialog will cause a copy of the `accepted-public-api-changes.json` containing your (properly sorted) addition to be downloaded.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/util/PrunedTag.java

         * - "p[data-type=ad]" matches p elements with data-type attribute equal to "ad"
         *
         * @param value the comma-separated string of pruned tag configurations
         * @return an array of PrunedTag objects parsed from the input string
         * @throws FessSystemException if the input string contains invalid tag patterns
         */
        public static PrunedTag[] parse(final String value) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 24 04:23:08 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  8. src/main/webapp/js/purify.min.js

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            assertNotNull(responseJobLogId);
            assertEquals(32, responseJobLogId.length());
            assertTrue(responseJobLogId.matches("[0-9a-f]{32}"));
    
            // Verify the pre-generated ID was passed to the job via launch params
            assertNotNull(capturedOption.get());
            assertEquals(responseJobLogId, capturedOption.get().getParameterMap().get(Constants.JOB_LOG_ID));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        //                                                                           Attribute
        //                                                                           =========
        // keeping parsed request parameters, normal texts or uploaded files
        // keys are requested parameter names (treated as field name here)
        protected Map<String, Object> elementsAll; // lazy-loaded, then after not null
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:48:41 GMT 2026
    - 18.9K bytes
    - Click Count (1)
Back to Top