Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for padded (0.03 seconds)

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

  1. src/test/resources/thumbnail/test_generate_thumbnail.sh

        echo -e "${GREEN}PASSED${NC}"
        ((TESTS_PASSED++))
    else
        echo -e "${RED}FAILED${NC}"
        ((TESTS_FAILED++))
    fi
    
    echo ""
    echo "--- ImageMagick version detection tests ---"
    
    echo -n "Testing: get_imagemagick_cmd function exists... "
    if grep -q 'get_imagemagick_cmd()' "${GENERATE_THUMBNAIL}"; then
        echo -e "${GREEN}PASSED${NC}"
        ((TESTS_PASSED++))
    else
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            emptyGenerator.addCondition("field2", "pattern.*");
    
            // We can't test isTarget properly without container,
            // but we can verify conditions are added
            assertNotNull(emptyGenerator);
    
            // Test that multiple conditions can be added without errors
            emptyGenerator.addCondition("type", "document");
            emptyGenerator.addCondition("mime", "text/.*");
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java

        @Required
        public String dictId;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The stopword to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String input;
    
        /**
         * Initializes the form with default values for creating a new stopword entry.
         */
        public void initialize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        /** Dictionary identifier */
        @Required
        public String dictId;
    
        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Token (word) to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java

            list.add(webApiManager);
            webApiManagers = list.toArray(new WebApiManager[list.size()]);
            if (logger.isDebugEnabled()) {
                logger.debug("WebApiManager added. totalManagers={}", webApiManagers.length);
            }
        }
    
        /**
         * Gets the appropriate web API manager for the given request.
         *
         * @param request The HTTP servlet request
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  6. src/main/resources/crawler/rule.xml

    			<!-- Supported MIME type -->
    			<arg>
      "(application/xml"
    + "|application/xhtml\+xml"
    + "|application/rdf\+xml"
    + "|application/pdf"
    + "|application/x-freemind"
    + "|text/xml"
    + "|text/xml-external-parsed-entity)"
    			</arg>
    		</postConstruct>
    	</component>
    
    	<component name="fsFileRule" class="org.codelibs.fess.crawler.rule.impl.RegexRule" >
    		<property name="ruleId">"fsFileRule"</property>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 29 08:21:02 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java

                + "|application/rdf\\+xml" //
                + "|application/pdf" //
                + "|application/x-freemind" //
                + "|text/xml" //
                + "|text/xml-external-parsed-entity)";
    
        // Pattern from fsFileRule in rule.xml
        private static final String FS_FILE_RULE_PATTERN = "(application/xml" //
                + "|application/xhtml\\+xml" //
                + "|application/rdf\\+xml" //
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/job/PurgeDocJob.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Job for purging expired documents from the search index.
     * This job removes documents that have passed their expiration time based on the expires field.
     * It helps maintain the search index by cleaning up outdated content automatically.
     */
    public class PurgeDocJob {
    
        /** Logger instance for this class */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java

         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        /**
         * The parameter name for the access token.
         * This field specifies how the token should be passed in API requests.
         * Maximum length is 10000 characters.
         */
        @Size(max = 10000)
        public String parameterName;
    
        /**
         * The expiration date and time for the access token.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java

        public String description;
    
        /** Handler class name for processing this data source */
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerName;
    
        /** Parameters passed to the data handler */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String handlerParameter;
    
        /** Script for custom data processing logic */
        @CustomSize(maxKey = "form.admin.max.input.size")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.5K bytes
    - Click Count (0)
Back to Top