Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 66 for sommes (0.04 seconds)

  1. src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java

        }
    
        @Test
        public void test_crawlingInfoPager_clear() {
            final CrawlingInfoPager pager = new CrawlingInfoPager();
            pager.id = "some-id";
            pager.sessionId = "some-session";
            pager.setCurrentPageNumber(5);
    
            pager.clear();
    
            assertNull(pager.id);
            assertNull(pager.sessionId);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/fess/pt/stopwords.txt

    houvéramos
    haja
    hajamos
    hajam
    houvesse
    houvéssemos
    houvessem
    houver
    houvermos
    houverem
    houverei
    houverá
    houveremos
    houverão
    houveria
    houveríamos
    houveriam
    sou
    somos
    são
    era
    éramos
    eram
    fui
    foi
    fomos
    foram
    fora
    fôramos
    seja
    sejamos
    sejam
    fosse
    fôssemos
    fossem
    for
    formos
    forem
    serei
    será
    seremos
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

        }
    
        @Test
        public void test_execute_withInvalidScriptType() {
            // Try to execute with non-existent script type
            try {
                scriptExecutor.execute("nonexistent", "some script");
                fail("Expected ScriptEngineException");
            } catch (ScriptEngineException e) {
                assertTrue(e.getMessage().contains("nonexistent"));
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  5. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #
            #; objectTypeTargetList = list:{TABLE ; VIEW}
    
            # o tableExceptList: (NotRequired - Default list:{})
            #  If you want to exclude some tables in generating target,
            #  you should specify the list of excepted table hints.
            #    e.g. list:{PRODUCT_STATUS ; prefix:TMP_}
            #  This is only for the main schema. Additional schemas are unconcerned.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

                thread.join(testDurationMs + 1000);
            }
    
            // Verify that alive was changed to false
            assertFalse("alive should be false after writer thread", dataStore.alive);
    
            // At least some observations from reader threads should have seen false
            // due to volatile ensuring visibility
            int falseCount = 0;
            for (int i = 0; i < readerThreadCount; i++) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.8K bytes
    - Click Count (1)
  7. src/main/resources/fess_indices/fess/es/stopwords.txt

    hubieron
    hubiera
    hubieras
    hubiéramos
    hubierais
    hubieran
    hubiese
    hubieses
    hubiésemos
    hubieseis
    hubiesen
    habiendo
    habido
    habida
    habidos
    habidas
    soy
    eres
    es
    somos
    sois
    son
    sea
    seas
    seamos
    seáis
    sean
    seré
    serás
    será
    seremos
    seréis
    serán
    sería
    serías
    seríamos
    seríais
    serían
    era
    eras
    éramos
    erais
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 10000)
        public String purgeByBots;
    
        /**
         * Email addresses to receive system notifications.
         * Multiple addresses can be specified, separated by commas.
         */
        @Size(max = 1000)
        public String notificationTo;
    
        /**
         * Enable or disable search suggestions based on search logs.
         * When enabled, suggestions are generated from previous searches.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

        @Test
        public void test_getUsedMemory_variations() {
            // Test multiple calls to ensure consistency
            long memory1 = MemoryUtil.getUsedMemory();
            assertTrue(memory1 >= 0);
    
            // Create some objects to change memory usage
            @SuppressWarnings("unused")
            String[] largeArray = new String[1000];
            for (int i = 0; i < 1000; i++) {
                largeArray[i] = "test" + i;
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12K bytes
    - Click Count (0)
  10. src/main/webapp/js/admin/popper.min.js.map

    errors in case one of the elements isn't defined for any reason\n  if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n    return document.documentElement;\n  }\n\n  // Here we make sure to give as \"start\" the element that comes first in the DOM\n  const order =\n    element1.compareDocumentPosition(element2) &\n    Node.DOCUMENT_POSITION_FOLLOWING;\n  const start = order ? element1 : element2;\n  const end = order ? element2 : element1;\n\n  // Get common ancestor container\n...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 120.9K bytes
    - Click Count (0)
Back to Top