Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for propData (0.03 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        /**
         * Parses project properties from the given path.
         *
         * @param propPath The path to the project properties file.
         * @throws FessSystemException if the properties file cannot be parsed.
         */
        protected void parseProjectProperties(final Path propPath) {
            try (final InputStream in = Files.newInputStream(propPath)) {
                final Properties prop = new Properties();
                prop.load(in);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            }
    
            // Initialize SystemHelper
            systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final java.nio.file.Path propPath) {
                    super.parseProjectProperties(propFile.toPath());
                }
    
                @Override
                public File createTempFile(String prefix, String suffix) {
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            }
    
            // Initialize SystemHelper
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final java.nio.file.Path propPath) {
                    super.parseProjectProperties(propFile.toPath());
                }
    
                @Override
                public File createTempFile(String prefix, String suffix) {
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            }
    
            // Initialize SystemHelper
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final java.nio.file.Path propPath) {
                    super.parseProjectProperties(propFile.toPath());
                }
    
                @Override
                public File createTempFile(String prefix, String suffix) {
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            desginJspRootFile.delete();
            desginJspRootFile.deleteOnExit();
            systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final Path propPath) {
                    super.parseProjectProperties(propFile.toPath());
                }
    
                @Override
                public void updateSystemProperties() {
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top