Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 378 for Sath (0.01 seconds)

  1. src/main/resources/fess_env.properties

    # 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
    mail.subject.test.prefix = [Test]
    
    # The common return path of all mail
    mail.return.path = root@localhost
    
    
    # ========================================================================================
    #                                                                                      DB
    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)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsThumbnailQueue.java

            this.generator = value;
        }
    
        public String getPath() {
            checkSpecifiedProperty("path");
            return convertEmptyToNull(path);
        }
    
        public void setPath(String value) {
            registerModifiedProperty("path");
            this.path = value;
        }
    
        public String getTarget() {
            checkSpecifiedProperty("target");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

         *
         * @param id the unique identifier for this mapping file
         * @param path the file path to the character mapping dictionary
         * @param timestamp the last modification timestamp of the file
         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        /**
         * Returns the type identifier for this dictionary file.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/storage/StorageItemTest.java

            final String name = "test-file.txt";
            final String path = "/documents/";
            final boolean directory = false;
            final long size = 1024L;
            final ZonedDateTime lastModified = ZonedDateTime.of(2025, 1, 15, 10, 30, 0, 0, ZoneId.systemDefault());
            final String encodedId = "dGVzdC1maWxlLnR4dA==";
    
            final StorageItem item = new StorageItem(name, path, directory, size, lastModified, encodedId);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt

        ) {
            val failures = projects
                .filter { (path, _) -> !computedTargetRuntimes.containsKey(path) }
                .filter { (path, _) -> projects.none { (_, value) -> value.details.dependencies.contains(path) } }
                .map { (path, info) -> "Project $path: ${info.buildFile.asClickableFileUrl()}" }
    
            if (failures.isNotEmpty()) {
                throw VerificationException(
                    """
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:40:18 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java

            // Test with no file path mappings
            assertEquals("test/path", emptyGenerator.expandPath("test/path"));
            assertNull(emptyGenerator.expandPath(null));
    
            // Test with file path mappings
            emptyGenerator.filePathMap.put("${path}/test", "/usr/bin/test");
            assertEquals("/usr/bin/test", emptyGenerator.expandPath("${path}/test"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

         *
         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
         * @param timestamp The last modified timestamp of the file.
         */
        public StemmerOverrideFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STEMMER_OVERRIDE;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java

            assertTrue(goAction.isFileSystemPath("s3://bucket/path/file%20with%20spaces.txt"));
            assertTrue(goAction.isFileSystemPath("s3://bucket/path/ファイル.txt"));
            assertTrue(goAction.isFileSystemPath("s3://bucket/path/file+name.txt"));
        }
    
        @Test
        public void test_isFileSystemPath_gcs_with_special_characters_in_path() {
            assertTrue(goAction.isFileSystemPath("gcs://bucket/path/file%20with%20spaces.txt"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java

        public ListBody() {
            super();
        }
    
        /** The ID of the dictionary. */
        public String id;
        /** The type of the dictionary. */
        public String type;
        /** The path of the dictionary. */
        public String path;
        /** The timestamp of the dictionary. */
        public Date timestamp;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/OsddHelper.java

            }
            final String path = LaServletContextUtil.getServletContext().getRealPath(osddPath);
            if (path == null) {
                logger.warn("OSDD file path could not be resolved: {}", osddPath);
                return null;
            }
            final File osddFile = new File(path);
            if (!osddFile.isFile()) {
                logger.warn("OSDD path is not a file: {}", path);
                return null;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 4.7K bytes
    - Click Count (0)
Back to Top