Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 119 for segons (0.03 seconds)

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

  1. src/test/java/org/codelibs/fess/job/PythonJobTest.java

            String result = pythonJob.execute();
    
            assertNotNull(result);
            assertTrue(result.contains("Session Id:"));
            assertTrue(result.contains("Process is terminated due to 60 second exceeded") || result.contains("Process terminated"));
        }
    
        // Test executePython with blank filename
        @Test
        public void test_executePython_blankFilename() {
            pythonJob.filename("");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/entity/ChatSessionTest.java

            assertEquals(0, session.getMessageCount());
    
            session.addUserMessage("First");
            assertEquals(1, session.getMessageCount());
    
            session.addAssistantMessage("Second");
            assertEquals(2, session.getMessageCount());
        }
    
        @Test
        public void test_getMessageCountWithNullMessages() {
            final ChatSession session = new ChatSession();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorEdgeCaseTest.java

            RankFusionProcessor processor = new RankFusionProcessor();
            processor.setSearcher(new TestSearcher(100));
            processor.init();
    
            // First close
            processor.close();
            // Second close - should not throw exception
            processor.close();
        }
    
        /**
         * Test searcher that returns configurable number of documents.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            String supportEmail = (String) defaultSettings.get("onelogin.saml2.contacts.support.email_address");
    
            assertNotNull(technicalEmail);
            assertNotNull(supportEmail);
    
            // Verify no double @ signs
            assertFalse("Technical email should not contain @@", technicalEmail.contains("@@"));
            assertFalse("Support email should not contain @@", supportEmail.contains("@@"));
    
            // Verify correct email format
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  5. CONTRIBUTING.md

    - Select a Adoptium Java 17 VM as "Gradle JVM"
    - Revert the Git changes to files in the `.idea` folder
    
    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    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)
  6. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

        /** Cache for storing group information to reduce API calls. */
        protected Cache<String, Pair<String[], String[]>> groupCache;
    
        /** Group cache expiry time in seconds. */
        protected long groupCacheExpiry = 10 * 60L;
    
        /** Maximum depth for processing nested groups to prevent infinite loops. */
        protected int maxGroupDepth = 10;
    
        /** Use V2 endpoint. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  7. src/main/webapp/js/clipboard.min.js

    String},n.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},370:function(t,e,n){var f=n(879),l=n(438);t.exports=function(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!f.string(e))throw new TypeError("Second argument must be a String");if(!f.fn(n))throw new TypeError("Third argument must be a Function");if(f.node(t))return c=e,a=n,(u=t).addEventListener(c,a),{destroy:function(){u.removeEventListener(c,a)}};if(f.nodeList(t))return o=t,r=e,i=n,Array.pr...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        public void close() throws Exception {
            if (executorService != null) {
                try {
                    executorService.shutdown();
                    executorService.awaitTermination(60, TimeUnit.SECONDS);
                } catch (final InterruptedException e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Executor shutdown interrupted", e);
                    }
                } finally {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java

                        errorOccurred.set(true);
                    } finally {
                        latch.countDown();
                    }
                }).start();
            }
    
            latch.await(10, TimeUnit.SECONDS);
            assertFalse("No unexpected errors should occur during concurrent access", errorOccurred.get());
        }
    
        /**
         * Test that default groups and roles are preserved during lazy loading.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

         * Gets the model name.
         *
         * @return the model name
         */
        protected abstract String getModel();
    
        /**
         * Gets the availability check interval in seconds.
         *
         * @return the interval in seconds
         */
        protected abstract int getAvailabilityCheckInterval();
    
        /**
         * Checks if RAG chat feature is enabled.
         *
         * @return true if RAG chat is enabled
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top