Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 287 for NO (0.01 seconds)

  1. src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java

        }
    
        @Test
        public void test_isValidVirtualHostPath_emptyVirtualHosts() throws Exception {
            // No virtual hosts configured
            setupVirtualHostHelper();
    
            Boolean result = invokeIsValidVirtualHostPath("/anypath");
            assertFalse("Any non-empty/non-root path should be blocked when no virtual hosts configured", result);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

            List<Map<String, Object>> logs = JsonPath.from(response).getList("response.logs");
    
            if (logs.isEmpty()) {
                logger.warn("No job logs found, skipping testReadJobLog");
                return;
            }
    
            String logId = logs.get(0).get("id").toString();
    
            // Get the specific log
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  3. src/main/assemblies/extension/kibana/README.md

    Example:
    ```
    # The Elasticsearch instance to use for all your queries.
    elasticsearch.url: "http://localhost:9201"
    ```
    
    #### Q. I imported "fess\_log.ndjson" but no results found.
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 12 01:26:21 GMT 2019
    - 1.2K bytes
    - Click Count (0)
  4. src/main/resources/fess_env.properties

    time.adjust.time.millis = 0
    
    # ----------------------------------------------------------
    #                                                      Mail
    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = true
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Aug 07 04:53:24 GMT 2021
    - 2.2K bytes
    - Click Count (1)
  5. src/main/java/org/codelibs/fess/util/JobProcess.java

         */
        protected InputStreamThread inputStreamThread;
    
        /**
         * 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/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        final Map<String, Object> map = (Map<String, Object>) transformer.getData(accessResultData);
                        if (map.isEmpty()) {
                            // no transformer
                            logger.warn("No data: url={}", accessResult.getUrl());
                            continue;
                        }
    
                        if (Constants.FALSE.equals(map.get(Constants.INDEXING_TARGET))) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 32.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            threads[0].start();
            threads[1].start();
    
            // Wait for completion
            threads[0].join();
            threads[1].join();
    
            // Verify no exceptions occurred (the main goal is no ConcurrentModificationException)
            assertNull(exceptions[0], "Add thread threw exception");
            assertNull(exceptions[1], "Clear thread threw exception");
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  8. src/main/webapp/js/bootstrap.min.js

    null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?u(t.parentNode):null},_=()=>{},g=t=>{t.offsetHeight},f=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,m=[],p=()=>"rtl"===document.documentElement.dir,b=t=>{var e;e=()=>{const e=f();if(e){const s=t.NAME,i=e.fn[s];e.fn[s]=t.jQueryInterface,e.fn[s].Constructor=t,e.fn[s].noConflict=()=>(e.fn[s]=i,t.jQueryInterface)}},"loadin...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 58.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

                    fos = new FileOutputStream(newFile);
                    writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8));
                    fos = null; // Successfully wrapped, no need to close explicitly
                } catch (final Exception e) {
                    if (fos != null) {
                        try {
                            fos.close();
                        } catch (final IOException ioe) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 13K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            response.setContentType("text/event-stream");
            response.setCharacterEncoding("UTF-8");
            response.setHeader("Cache-Control", "no-cache");
            response.setHeader("Connection", "keep-alive");
            response.setHeader("X-Accel-Buffering", "no"); // Disable nginx buffering
    
            try (final PrintWriter writer = response.getWriter()) {
                final String userId = getUserId(request);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
Back to Top