Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 87 for minuts (0.03 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java

        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The input terms that should be considered synonymous */
        @Required
        @Size(max = 1000)
        public String inputs;
    
        /** The output synonyms that should be matched for the input terms */
        @Required
        @Size(max = 1000)
        public String outputs;
    
        /**
    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)
  2. src/main/resources/fess_indices/_aws/fess.json

    "ole", "oli", "olisi", "olisit", "olisin", "olisimme", "olisitte", "olisivat", "olit", "olin", "olimme", "olitte", "olivat", "ollut", "olleet", "en", "et", "ei", "emme", "ette", "eivät", "minä", "minun", "minut", "minua", "minussa", "minusta", "minuun", "minulla", "minulta", "minulle", "sinä", "sinun", "sinut", "sinua", "sinussa", "sinusta", "sinuun", "sinulla", "sinulta", "sinulle", "hän", "hänen", "hänet", "häntä", "hänessä", "hänestä", "häneen", "hänellä", "häneltä", "hänelle", "me", "meidän", "meidät",...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

    "ole", "oli", "olisi", "olisit", "olisin", "olisimme", "olisitte", "olisivat", "olit", "olin", "olimme", "olitte", "olivat", "ollut", "olleet", "en", "et", "ei", "emme", "ette", "eivät", "minä", "minun", "minut", "minua", "minussa", "minusta", "minuun", "minulla", "minulta", "minulle", "sinä", "sinun", "sinut", "sinua", "sinussa", "sinusta", "sinuun", "sinulla", "sinulta", "sinulle", "hän", "hänen", "hänet", "häntä", "hänessä", "hänestä", "häneen", "hänellä", "häneltä", "hänelle", "me", "meidän", "meidät",...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        /**
         * Cache for storing available artifacts by type.
         * The cache expires after 5 minutes and has a maximum size of 10 entries.
         */
        protected LoadingCache<ArtifactType, Artifact[]> availableArtifacts = CacheBuilder.newBuilder()
                .maximumSize(10)
                .expireAfterWrite(5, TimeUnit.MINUTES)
                .build(new CacheLoader<ArtifactType, Artifact[]>() {
                    @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            assertNotNull(helper.userInfoCache);
            assertNotNull(helper.searchLogLogger);
        }
    
        @Test
        public void test_setUserCheckInterval() {
            long interval = 5 * 60 * 1000L; // 5 minutes
            searchLogHelper.setUserCheckInterval(interval);
            assertEquals(interval, searchLogHelper.userCheckInterval);
        }
    
        @Test
        public void test_setUserInfoCacheSize() {
            int cacheSize = 5000;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

            final ProtwordsItem other = (ProtwordsItem) obj;
            return java.util.Objects.equals(input, other.input);
        }
    
        @Override
        public String toString() {
            return "ProtwordsItem [id=" + id + ", inputs=" + input + ", newInputs=" + newInput + "]";
        }
    
        /**
         * Converts this item to a string representation for writing to file.
         * @return the string representation of this item
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym.jsp

                                                            data-href="${contextPath}/admin/dict/synonym/details/${f:u(dictId)}/4/${f:u(data.id)}">
                                                        <td>${f:h(data.inputs)}</td>
                                                        <td>${f:h(data.outputs)}</td>
                                                    </tr>
                                                </c:forEach>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  8. dbflute_fess/dfprop/documentMap.dfprop

        #  You can set LoadDataReverse settings.
        #  This property is valid when the property 'recordLimit' is set.
        #  Elements of this map are as below:
        #   o recordLimit: The limit of records to output. Minus means no limit. (NotRequired - Default '')
        #   o isReplaceSchemaDirectUse: Does it output the data to playsql directly? (NotRequired - Default false)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            writeTestFile("a,b c\n");
    
            PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10);
            assertEquals(0, result.size());
        }
    
        // Test reload with empty inputs
        @Test
        public void test_reload_emptyInputs() throws Exception {
            writeTestFile(" => output\n");
    
            PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            testBoundaryValue(1L);
            testBoundaryValue(-1L);
    
            // Test one second boundaries
            testBoundaryValue(1000L);
            testBoundaryValue(-1000L);
    
            // Test one minute boundaries
            testBoundaryValue(60000L);
            testBoundaryValue(-60000L);
    
            // Test one hour boundaries
            testBoundaryValue(3600000L);
            testBoundaryValue(-3600000L);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
Back to Top