Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,397 for path_ (0.51 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java

            enumArray1.count = 2;
            enumArray1.s = new netdfs.DfsInfo1[2];
            enumArray1.s[0] = new netdfs.DfsInfo1();
            enumArray1.s[0].entry_path = "path1";
            enumArray1.s[1] = new netdfs.DfsInfo1();
            enumArray1.s[1].entry_path = "path2";
    
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            // Create buffer for encoding - initially allocate some space
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            }
        }
    
        /**
         * Checks if the given URL represents a file system path.
         * Determines if the URL uses file system protocols that may require
         * special handling for content serving.
         *
         * @param url the URL to check
         * @return true if the URL is a file system path, false otherwise
         */
        protected boolean isFileSystemPath(final String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/RequestWithPathTest.java

            private String path;
            private String server;
            private String domain;
            private String fullUNCPath;
            private boolean resolveInDfs;
    
            @Override
            public String getPath() {
                return path;
            }
    
            @Override
            public void setPath(String path) {
                this.path = path;
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  4. cmd/kms-handlers_test.go

    		name   string
    		method string
    		path   string
    		query  map[string]string
    	}{
    		{
    			name:   "GET status",
    			method: http.MethodGet,
    			path:   kmsStatusPath,
    		},
    		{
    			name:   "GET metrics",
    			method: http.MethodGet,
    			path:   kmsMetricsPath,
    		},
    		{
    			name:   "GET apis",
    			method: http.MethodGet,
    			path:   kmsAPIsPath,
    		},
    		{
    			name:   "GET version",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  5. .github/workflows/build-docs.yml

            with:
              key: mkdocs-cards-${{ matrix.lang }}-${{ github.ref }}
              path: docs/${{ matrix.lang }}/.cache
          - name: Build Docs
            run: python ./scripts/docs.py build-lang ${{ matrix.lang }}
          - uses: actions/upload-artifact@v4
            with:
              name: docs-site-${{ matrix.lang }}
              path: ./site/**
              include-hidden-files: true
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            new Thread(() -> {
                final Path basePath = baseDir.toPath();
                final String suffix = "." + imageExtention;
                try (Stream<Path> paths = Files.walk(basePath)) {
                    paths.filter(path -> path.toFile().getName().endsWith(imageExtention)).forEach(path -> {
                        final Path subPath = basePath.relativize(path);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  7. docs/uk/docs/tutorial/first-steps.md

    ### Крок 3: визначте операцію шляху (path operation)
    
    #### Шлях (path)
    
    "Шлях" це частина URL, яка йде одразу після символу `/`.
    
    Отже, у такому URL, як:
    
    ```
    https://example.com/items/foo
    ```
    
    ...шлях буде:
    
    ```
    /items/foo
    ```
    
    /// info | Додаткова інформація
    
    "Шлях" (path) також зазвичай називають "ендпоінтом" (endpoint) або "маршрутом" (route).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. docs/zh/docs/advanced/behind-a-proxy.md

        "servers": [
            {
                "url": "/api/v1"
            }
        ],
        "paths": {
                // More stuff here
        }
    }
    ```
    
    本例中的 `Proxy` 是 **Traefik**,`server` 是运行 FastAPI 应用的 **Uvicorn**。
    
    ### 提供 `root_path`
    
    为此,要以如下方式使用命令行选项 `--root-path`:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --root-path /api/v1
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/behind-a-proxy.md

    ```console
    $ uvicorn main:app --root-path /api/v1
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Falls Sie Hypercorn verwenden, das hat auch die Option `--root-path`.
    
    /// note | Technische Details
    
    Die ASGI-Spezifikation definiert einen `root_path` für diesen Anwendungsfall.
    
    Und die Kommandozeilenoption `--root-path` stellt diesen `root_path` bereit.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/ServerResponseValidator.java

            }
        }
    
        /**
         * Validate path from server response
         *
         * @param path path to validate
         * @throws SmbException if path is invalid
         */
        public void validatePath(String path) throws SmbException {
            totalValidations.incrementAndGet();
    
            if (path == null || path.isEmpty()) {
                return; // Empty paths allowed
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top