Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 1,249 for new1 (0.02 seconds)

  1. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

         *
         * @throws SAXException if a SAX error occurs during initialization
         */
        @Override
        public void startDocument() throws SAXException {
            tagQueue = new LinkedList<>();
            labelList = new ArrayList<>();
            labelType = null;
        }
    
        /**
         * SAX event handler called at the end of document parsing.
         * Cleans up internal data structures used during parsing.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            IllegalStateException innerException = new IllegalStateException("Invalid state");
            OutOfMemoryError middleError = new OutOfMemoryError("Memory exhausted");
            // Note: OutOfMemoryError constructor doesn't accept cause, so we create a wrapper
            RuntimeException outerException = new RuntimeException("Wrapper", middleError);
            SsoProcessException exception = new SsoProcessException(message, outerException);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            conditions.put("q", new String[] { "search term" });
            conditions.put("epq", new String[] { "exact phrase" });
            conditions.put("oq", new String[] { "word1 word2" });
            conditions.put("nq", new String[] { "exclude" });
            conditions.put("filetype", new String[] { "pdf" });
            conditions.put("sitesearch", new String[] { "example.com" });
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/CrawlerEngineClient.java

     * Extends FesenClient to provide search engine connectivity for the crawler components.
     */
    public class CrawlerEngineClient extends FesenClient {
    
        /**
         * Creates a new instance of CrawlerEngineClient.
         */
        public CrawlerEngineClient() {
            super();
        }
    
        @Override
        protected Client createClient() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/util/JobProcess.java

        /**
         * Constructs a new JobProcess with the specified process.
         * Uses the default buffer size and no output callback.
         *
         * @param process the system process to wrap
         */
        public JobProcess(final Process process) {
            this(process, InputStreamThread.MAX_BUFFER_SIZE, null);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/pager/JobLogPagerTest.java

            assertEquals(999, jobLogPager.getCurrentPageNumber());
            List<Integer> pageNumberList = new ArrayList<Integer>(1);
            jobLogPager.setPageNumberList(pageNumberList);
            assertEquals(pageNumberList, jobLogPager.getPageNumberList());
    
        }
    
        public void test_clear() {
            JobLogPager jobLogPager = new JobLogPager();
            jobLogPager.id = "testId";
            jobLogPager.jobName = "testJobName";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/pager/WebAuthPagerTest.java

            assertEquals(999, webAuthPager.getCurrentPageNumber());
            List<Integer> pageNumberList = new ArrayList<Integer>(1);
            webAuthPager.setPageNumberList(pageNumberList);
            assertEquals(pageNumberList, webAuthPager.getPageNumberList());
    
        }
    
        public void test_clear() {
            WebAuthPager webAuthPager = new WebAuthPager();
            webAuthPager.id = "testId";
            webAuthPager.port = "8080";
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/it/admin/WebConfigTests.java

            requestBody.put("sort_order", id);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            updateMap.put("urls", "http://new." + NAME_PREFIX);
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

            });
            return asJson(new ApiResponse().status(Status.OK).result());
        }
    
        /**
         * Creates an edit body from a job log entity for API responses.
         *
         * @param entity the job log entity to convert
         * @return edit body containing the entity data
         */
        protected EditBody createEditBody(final JobLog entity) {
            final EditBody body = new EditBody();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

                cleanupTask.cancel();
            }
        }
    
        /**
         * Creates a new chat session.
         *
         * @param userId the user ID (can be null for anonymous users)
         * @return the created session
         */
        public ChatSession createSession(final String userId) {
            final ChatSession session = new ChatSession(userId);
            sessionCache.put(session.getSessionId(), session);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
Back to Top