Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Environment (0.05 sec)

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

            return getPath(StringUtil.EMPTY, "js", names);
        }
    
        /**
         * Gets the path to environment-specific files directory.
         *
         * @param envName the environment name (e.g., "python", "ruby")
         * @param names the path components to append to the environment directory
         * @return the Path object pointing to the environment-specific directory
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

                } catch (Exception e) {
                    // Expected due to missing dependencies in test environment
                    assertTrue(true);
                    return;
                }
    
                assertEquals(0, functionBuilders.size());
            } catch (Exception e) {
                // Expected due to missing dependencies in test environment
                assertTrue(true);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * The value is, e.g. true <br>
         * comment: Is development environment here? (used for various purpose, you should set false if unknown)
         * @return The determination, true or false. (if not found, exception but basically no way)
         */
        boolean isDevelopmentHere();
    
        /**
         * Get the value for the key 'environment.title'. <br>
         * The value is, e.g. Local Development <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

                }
            } catch (NullPointerException e) {
                // Expected in test environment due to missing dependencies
                assertTrue("Test environment limitation", true);
            }
        }
    
        public void test_getLanguages_withAllLanguages() {
            SearchRequestParams params = createMockSearchRequestParams();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

            }
        }
    
        /**
         * Get the environment map.
         * @return The environment map.
         */
        protected Map<String, String> getEnvMap() {
            if (envMap != null) {
                return envMap;
            }
            return System.getenv();
        }
    
        /**
         * Set the environment map.
         * @param envMap The environment map.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

                mockThemeHelper.install(artifact);
                assertTrue(true); // Should complete without exception
            } catch (Exception e) {
                // May fail due to ResourceUtil dependencies in test environment
                assertTrue(true);
            }
        }
    
        public void test_install_withInvalidZip() throws IOException {
            // Create an invalid zip file
            Path jarPath = tempDir.resolve("invalid.jar");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            // Since we're in test environment without request context, this will return null
            String stringResult = WebApiUtil.getObject("testString");
            assertNull("Should return null in test environment", stringResult);
    
            Integer intResult = WebApiUtil.getObject("testInteger");
            assertNull("Should return null in test environment", intResult);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            try {
                suggestJob.executeSuggestCreator();
                // In test environment, exception handling may vary
            } catch (JobProcessingException e) {
                assertTrue(e.getMessage().contains("SuggestCreator Process terminated"));
            } catch (Exception e) {
                // May throw different exception in test environment
                assertNotNull(e);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/ExecJob.java

         */
        public ExecJob jvmOptions(final String... options) {
            Collections.addAll(jvmOptions, options);
            return this;
        }
    
        /**
         * Sets the Lasta environment configuration.
         *
         * @param env the Lasta environment string
         * @return this ExecJob instance for method chaining
         */
        public ExecJob lastaEnv(final String env) {
            lastaEnv = env;
            return this;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

            } catch (IORuntimeException e) {
                // Expected in test environment due to OpenSearch XContent setup
                assertTrue(e.getCause() instanceof IOException);
            }
        }
    
        public void test_scroll_callbackHandling() {
            // This test verifies the scroll method exists and handles callbacks properly
            // Note: In a real test environment, this would require proper SearchEngineClient setup
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top