Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 35 for addTag (0.08 seconds)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                stream(langs).of(stream -> stream.forEach(builder::addLang));
    
                stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag));
                final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
                if (StringUtil.isNotBlank(key)) {
                    builder.addTag(key);
                }
    
                builder.addKind(SuggestItem.Kind.USER.toString());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 27 13:56:32 GMT 2026
    - 55.4K bytes
    - Click Count (1)
  2. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                    popularWordsRequestBuilder.setSeed(baseSeed);
                    stream(baseTags).of(stream -> stream.forEach(tag -> popularWordsRequestBuilder.addTag(tag)));
                    stream(baseRoles).of(stream -> stream.forEach(role -> popularWordsRequestBuilder.addRole(role)));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

        @Test
        public void test_addCondition() {
            // Test adding conditions
            generator = new TestThumbnailGenerator();
    
            // Test adding single condition
            generator.addCondition("field1", "value1");
    
            // Test adding multiple conditions for same field
            generator.addCondition("field1", "value2");
    
            // Test adding conditions for different fields
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Feb 04 14:24:39 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

        }
    
        @Test
        public void test_addCondition() {
            // Initialize without container
            emptyGenerator = new EmptyGenerator();
    
            // Test adding conditions - this should work without container
            emptyGenerator.addCondition("field1", "pattern1");
            emptyGenerator.addCondition("field1", "pattern2");
            emptyGenerator.addCondition("field2", "pattern.*");
    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)
  5. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            when:
            newBase.addInterface(stablePublicInterface)
    
            then:
            noViolation(rule)
        }
    
        def 'adding an #type interface can be reported'() {
            given:
            newBase.addInterface(interfaces[type])
    
            when:
            Violation violation = rule.maybeViolation(apiClass)
    
            then:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 4K bytes
    - Click Count (0)
  6. ADDING_NEW_LANGUAGE.md

    - Language items are cached for 1 hour by `SystemHelper`
    - Restart the application after adding new languages
    
    ### Auto-Generated Files
    
    Never edit these files manually (marked with `@author FreeGen`):
    - `FessLabels.java`
    - `FessMessages.java`
    
    Always regenerate them using `mvn dbflute:freegen`
    
    ## Complete Example: Adding Swedish (sv)
    
    ```bash
    # 1. Navigate to resources directory
    cd src/main/resources
    
    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)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
         * The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt

     *
     * ## Adding a new dependency with an unrecognised license
     *
     * If `./gradlew generateLicenseFile` fails with "declare a license name not registered in
     * License.kt", add the raw POM name string to the [aliases] list of the matching entry, or
     * create a new entry if the license is genuinely new.
     *
     * ## Adding a dependency whose POM has no license data
     *
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 13:24:46 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  9. CONTRIBUTING.md

    If you did not have a Adoptium Java 17 SDK installed before importing the project into IntelliJ and after adding Adoptium Java 17 SDK your IntelliJ still uses the wrong SDK version, you might need to invalidate IntelliJ's caches before reloading the project.
    
    #### Install Develocity IntelliJ plugin
    
    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)
  10. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            // Test with empty strings
            result = jobExecutor.execute("", "");
            assertEquals("Executed:  ", result);
        }
    
        @Test
        public void test_addShutdownListener() {
            // Test adding shutdown listener
            AtomicBoolean shutdownCalled = new AtomicBoolean(false);
            ShutdownListener listener = new ShutdownListener() {
                @Override
                public void onShutdown() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.4K bytes
    - Click Count (0)
Back to Top