Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,212 for path_ (0.02 sec)

  1. docs/em/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Sebastián Ramírez <******@****.***> 1731896744 +0100
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Rishat-F <******@****.***> 1737747871 +0300
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Jan 24 19:44:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. 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)
  4. docs/smb3-features/01-smb3-lease-design.md

            private final long createTime;
            private volatile long lastAccessTime;
            private final String path;
            private volatile boolean breaking;
            
            public LeaseEntry(Smb2LeaseKey key, String path, int state) {
                this.leaseKey = key;
                this.path = path;
                this.leaseState = state;
                this.createTime = System.currentTimeMillis();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 22K bytes
    - Viewed (0)
  5. 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)
  6. docs/pt/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    Sebastián Ramírez <******@****.***> 1731896744 +0100
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. docs/smb3-features/02-persistent-handles-design.md

        
        public HandleInfo getHandleForReconnect(String path) {
            HandleInfo info = handles.get(path);
            if (info != null && !info.isExpired()) {
                info.reconnecting = true;
                return info;
            }
            return null;
        }
        
        public void completeReconnect(String path, boolean success) {
            HandleInfo info = handles.get(path);
            if (info != null) {
                if (success) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  8. 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)
  9. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            }
        }
    
        private static void createFileConfig() {
            final Map<String, Object> requestBody = new HashMap<>();
            final String paths = "file:" + getTestDataPath();
            requestBody.put("name", NAME_PREFIX + "FileConfig");
            requestBody.put("paths", paths);
            requestBody.put("excluded_paths", ".*\\.git.*");
            requestBody.put("max_access_count", 100);
            requestBody.put("num_of_thread", 1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  10. 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)
Back to top