Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 691 for path_ (0.05 sec)

  1. src/main/resources/fess_label.properties

    labels.depth=Depth
    labels.excludedPaths=Excluded Paths for Crawling
    labels.excludedUrls=Excluded URLs for Crawling
    labels.excludedDocPaths=Excluded Paths for Searching
    labels.excludedDocUrls=Excluded URLs for Searching
    labels.hostname=Hostname
    labels.id=ID
    labels.includedPaths=Included Paths for Crawling
    labels.includedUrls=Included URLs for Crawling
    labels.includedDocPaths=Included Paths for Searching
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/InputValidatorTest.java

        void testValidSmbPaths(String path) {
            assertDoesNotThrow(() -> InputValidator.validateSmbPath(path));
        }
    
        @ParameterizedTest
        @DisplayName("Test invalid path characters")
        @ValueSource(strings = { "file:name.txt", "file<name>.txt", "file|name.txt", "file*name.txt", "file?name.txt", "file\"name.txt" })
        void testInvalidPathCharacters(String path) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

        }
    
        public void test_writeThreadDump_withSpecialCharacters() throws IOException {
            // Test with file path containing special characters
            Path tempDir = Files.createTempDirectory("test-スレッドダンプ-dir");
            Path tempFile = tempDir.resolve("thread-dump-テスト.txt");
    
            try {
                ThreadDumpUtil.writeThreadDump(tempFile.toString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/HandlerTest.java

            assertEquals("param=value", queryUrl.getQuery());
        }
    
        @Test
        @DisplayName("URL handles relative paths correctly")
        void testRelativeUrlHandling() throws Exception {
            // Create base URL
            URL baseUrl = new URL(null, "smb://server/share/", handler);
    
            // Test relative path resolution
            URL relativeUrl = new URL(baseUrl, "folder/file.txt");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/audit/SecurityAuditLogger.java

         *
         * @param path file path
         * @param operation operation performed
         * @param success whether operation succeeded
         * @param username user performing operation
         */
        public void logFileAccess(String path, String operation, boolean success, String username) {
            Map<String, Object> context = getContextMap();
            context.put("path", sanitizePath(path));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01;
        /** Receive buffer posted flag */
        int FLAGS_RECEIVE_BUFFER_POSTED = 0x02;
        /** Path names are caseless flag */
        int FLAGS_PATH_NAMES_CASELESS = 0x08;
        /** Path names canonicalized flag */
        int FLAGS_PATH_NAMES_CANONICALIZED = 0x10;
        /** Oplock requested or granted flag */
        int FLAGS_OPLOCK_REQUESTED_OR_GRANTED = 0x20;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

            dr.expiration = n.getExpiration();
            dr.path = n.getPath();
            dr.pathConsumed = this.pathConsumed + n.getPathConsumed();
            if (this.path != null) {
                dr.pathConsumed -= this.path != null ? this.path.length() + 1 : 0;
            }
            dr.domain = n.getDomain();
            return dr;
        }
    
        /*
         * Split DFS path like \fs1.example.com\root5\link2\foo\bar.txt into at
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/Files.java

        }
    
        // split the path apart
        Iterable<String> components = Splitter.on('/').omitEmptyStrings().split(pathname);
        List<String> path = new ArrayList<>();
    
        // resolve ., .., and //
        for (String component : components) {
          switch (component) {
            case ".":
              continue;
            case "..":
              if (path.size() > 0 && !path.get(path.size() - 1).equals("..")) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

            return ComponentUtil.getCurlHelper().get("/_configsync/file").param("path", dictFile.getPath()).execute();
        }
    
        /**
         * Adds a new dictionary creator to this manager.
         * Dictionary creators are responsible for creating specific types
         * of dictionary files based on file paths and timestamps.
         *
         * @param creator the dictionary creator to add
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/DfsImpl.java

            String link;
    
            if (path == null || path.length() <= 1) {
                /*
                 * Lookup the domain based DFS root target referral. Note the
                 * path is just "\" and not "\example.com\root".
                 */
                link = "\\";
            } else if (path.charAt(path.length() - 1) == '\\') {
                // strip trailing slash
                link = path.substring(0, path.length() - 1);
            } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
Back to top