Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 81 - 90 of 130 for karena (0.04 seconds)

  1. src/main/webapp/js/admin/plugins/form-validator/sweden.js

    hylte","håbo","hällefor","härjedalen","härnösand","härryda","hässleholm","höganäs","högsby","hörby","höör","jokkmokk","järfälla","jönköping","kalix","kalmar","karlsborg","karlshamn","karlskoga","karlskrona","karlstad","katrineholm","kil","kinda","kiruna","klippan","knivsta","kramfors","kristianstad","kristinehamn","krokoms","kumla","kungsbacka","kungsör","kungälv","kävlinge","köping","laholm","landskrona","laxå","lekeberg","leksand","lerum","lessebo","lidingö","lidköping","lilla edets","lindesbe...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 6.4K bytes
    - Click Count (1)
  2. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            FacetResponse facetResponse = null;
    
            QueryResponseList qrList = new QueryResponseList(documentList, 100L, "gte", 500L, true, facetResponse, 0, 10, 0);
    
            assertEquals(documentList, qrList.parent);
            assertEquals(100L, qrList.getAllRecordCount());
            assertEquals("gte", qrList.getAllRecordCountRelation());
            assertEquals(500L, qrList.getQueryTime());
            assertTrue(qrList.isPartialResults());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
  3. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

            assertEquals(EXPECTED_PACKAGE_LIST, getRelocatedPackages(aJar(someClasses() + someClassesInDefaultPackage())))
        }
    
        private
        fun touchFile(path: Path) {
            Files.createDirectories(path.parent)
            Files.write(path, byteArrayOf())
        }
    
        private
        fun someClasses(): Sequence<Path> {
            val directory = projectDir.resolve("classes")
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 25 08:50:34 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         *
         * @param runtime the action runtime context containing request information
         * @return ActionResponse with unauthorized error if access denied, otherwise delegates to parent
         */
        @Override
        public ActionResponse godHandPrologue(final ActionRuntime runtime) {
            if (!isAccessAllowed()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

                fail("Should have caught FessUserNotFoundException");
            }
        }
    
        @Test
        public void test_throwAndCatchAsFessSystemException() {
            // Test catching as parent exception type
            String username = "testuser";
    
            try {
                throw new FessUserNotFoundException(username);
            } catch (FessSystemException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

        @Test
        public void test_determineAlias_multipleLocales() {
            // Test with various locale configurations
            Locale[] testLocales = { Locale.US, Locale.UK, Locale.CANADA, Locale.FRANCE, Locale.CHINA, Locale.KOREA, new Locale("es", "ES"),
                    new Locale("pt", "BR") };
    
            for (Locale locale : testLocales) {
                OptionalThing<String> result = provider.determineAlias(locale);
    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)
  7. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

         */
        @Test
        public void test_extendedSearcher() {
            final ExtendedTestSearcher searcher = new ExtendedTestSearcher();
            // Name should be based on actual class, not parent
            assertEquals("extended_test", searcher.getName());
        }
    
        /**
         * Test that search method must be implemented.
         */
        @Test
        public void test_searchMethodAbstract() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

            final Path parentPath = parentFile.toPath();
            try {
                Files.createDirectories(parentPath);
            } catch (final IOException e) {
                logger.warn("Failed to create parent directory: {}", parentFile.getAbsolutePath(), e);
                return false;
            }
    
            return process(thumbnailId, responseData -> {
                if (!isImageMimeType(responseData)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

        private BoostQueryCommand boostQueryCommand;
        private QueryProcessor queryProcessor;
    
        @Override
        protected void setUpChild() throws Exception {
            // Get the queryProcessor that was registered in parent class
            queryProcessor = ComponentUtil.getComponent("queryProcessor");
    
            // Register all query commands needed for testing
            new TermQueryCommand().register();
            new MatchAllQueryCommand().register();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                assertTrue(true);
            } finally {
                if (outputFile.exists()) {
                    outputFile.delete();
                }
            }
        }
    
        // Test parent directory scenarios
        @Test
        public void test_generate_parent_directory_not_exists() throws Exception {
            final File tempDir = new File(System.getProperty("java.io.tmpdir"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
Back to Top