Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 341 - 350 of 1,017 for fileOps (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

        // GET /api/admin/storage/list/{id}
        // PUT /api/admin/storage/list/{id}
        /**
         * Lists files and directories in storage.
         * @param id The ID of the directory to list.
         * @return A JSON response containing the list of files and directories.
         */
        @Execute
        public JsonResponse<ApiResult> list(final OptionalThing<String> id) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  2. CONTRIBUTING.md

        to go about it.
    2.  All contributions must be licensed Apache 2.0 and all files must have a copy
        of the boilerplate license comment (can be copied from an existing file).
    3.  Files should be formatted according to Google's [Java style guide][].
    4.  Do your best to have a [well-formed commit message][] for the change.
    5.  Pull requests typically do not need to modify the files under the `android`
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 17:53:05 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

    /**
     * Fess-specific web resource root implementation for Tomcat.
     * This class extends StandardRoot to provide custom web resource handling
     * for Fess plugins, including support for plugin JAR files in the WEB-INF/plugin directory.
     */
    public class FessWebResourceRoot extends StandardRoot {
        /** Logger instance for this class */
        private static final Logger logger = Logger.getLogger(FessWebResourceRoot.class.getName());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  4. .teamcity/scripts/CheckRemoteProjectRef.java

                System.err.println("Usage: java CheckRemoteProjectRef.java <propertyKey1> <propertyKey2> ...");
                System.exit(2);
            }
    
            Path propsPath = Paths.get("gradle.properties");
            if (!Files.exists(propsPath)) {
                System.err.println("gradle.properties not found at: " + propsPath.toAbsolutePath());
                System.exit(2);
            }
    
            Map<String, String> props = readProperties(propsPath);
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  5. .teamcity/src/main/kotlin/common/Os.kt

        ALPINE(
            "Linux",
            androidHome = "/not/supported",
            jprofilerHome = "/not/supported",
        ),
        WINDOWS(
            "Windows",
            androidHome = """C:\Program Files\android\sdk""",
            jprofilerHome = """C:\Program Files\jprofiler\jprofiler11.1.4""",
            perfTestWorkingDir = "P:/",
        ),
        MACOS(
            "Mac",
            androidHome = "/opt/android/sdk",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 15 19:30:24 GMT 2026
    - 4K bytes
    - Click Count (0)
  6. docs/es/docs/advanced/json-base64-bytes.md

    Si tu app necesita recibir y enviar datos JSON, pero necesitas incluir datos binarios en él, puedes codificarlos como base64.
    
    ## Base64 vs Archivos { #base64-vs-files }
    
    Considera primero si puedes usar [Archivos en request](../tutorial/request-files.md) para subir datos binarios y [Response personalizada - FileResponse](./custom-response.md#fileresponse--fileresponse-) para enviar datos binarios, en lugar de codificarlos en JSON.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  7. docs/ko/docs/advanced/json-base64-bytes.md

    # 바이트를 Base64로 포함하는 JSON { #json-with-bytes-as-base64 }
    
    애플리케이션에서 JSON 데이터를 주고받아야 하지만 그 안에 바이너리 데이터를 포함해야 한다면, base64로 인코딩해서 포함할 수 있습니다.
    
    ## Base64와 파일 { #base64-vs-files }
    
    바이너리 데이터 업로드에는 [요청 파일](../tutorial/request-files.md)을, 바이너리 데이터 전송에는 [커스텀 응답 - FileResponse](./custom-response.md#fileresponse--fileresponse-)를 사용할 수 있는지 먼저 고려하세요. JSON으로 인코딩하는 대신 말입니다.
    
    JSON은 UTF-8로 인코딩된 문자열만 포함할 수 있으므로, 원시 바이트를 그대로 담을 수 없습니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts

    }
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
            allWarningsAsErrors = true
        }
    }
    
    detekt {
        // overwrite the config file's location
        config.convention(project.isolated.rootProject.projectDirectory.file("../gradle/detekt.yml"))
    }
    
    tasks.named("codeQuality") {
        dependsOn("detekt")
    }
    
    tasks.validatePlugins {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/path-params.md

    使用 Starlette 提供的選項,你可以用像這樣的 URL 來宣告一個包含「路徑」的「路徑參數」:
    
    ```
    /files/{file_path:path}
    ```
    
    在這個例子裡,參數名稱是 `file_path`,而最後面的 `:path` 表示該參數應該匹配任意「路徑」。
    
    所以你可以這樣使用它:
    
    {* ../../docs_src/path_params/tutorial004_py310.py hl[6] *}
    
    /// tip
    
    你可能需要這個參數包含 `/home/johndoe/myfile.txt`,也就是前面帶有斜線(`/`)。
    
    在那種情況下,URL 會是:`/files//home/johndoe/myfile.txt`,在 `files` 與 `home` 之間有兩個斜線(`//`)。
    
    ///
    
    ## 回顧 { #recap }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  10. compat/maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

     * under the License.
     */
    package org.apache.maven.building;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.util.Objects;
    
    /**
     * Wraps an ordinary {@link File} as a source.
     *
     * @deprecated since 4.0.0, use {@link org.apache.maven.api.services} instead
     */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jan 15 18:51:29 GMT 2025
    - 3K bytes
    - Click Count (0)
Back to Top