Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 271 - 280 of 1,235 for fileOps (0.05 seconds)

  1. src/main/webapp/js/admin/plugins/form-validator/file.js

    c.imageRatioNotAccepted;return!1},a.formUtils.addAsyncValidator({name:"dimension",validatorFunction:function(b,d,e,g,h){if(c){var i=e.get(0).files||[],j=this;e.attr("data-validation").indexOf("mime")===-1?(alert("You should validate file type being jpg, gif or png on input "+e[0].name),b(!1)):i.length>1?(alert("Validating image dimensions does not support inputs allowing multiple files"),b(!1)):0===i.length?b(!0):f(i[0],function(c){var d=!1;e.valAttr("dimension")&&(d=a.formUtils.checkImageDimension(c,e.valAttr...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 4.6K bytes
    - Click Count (0)
  2. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

                if (sitemapsXmlFile.exists()) {
                    String content = new String(java.nio.file.Files.readAllBytes(sitemapsXmlFile.toPath()), "UTF-8");
                    content = content.replaceAll("localhost:\\d+", "localhost:" + actualPort);
                    java.nio.file.Files.write(sitemapsXmlFile.toPath(), content.getBytes("UTF-8"));
                }
    
                // Update sitemaps.txt
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 15 01:11:43 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java

                    .installationSettingsSource(
                            installationSettingsPath != null && Files.exists(installationSettingsPath)
                                    ? Sources.fromPath(installationSettingsPath)
                                    : null)
                    .projectSettingsSource(
                            projectSettingsPath != null && Files.exists(projectSettingsPath)
                                    ? Sources.fromPath(projectSettingsPath)
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Feb 07 00:45:02 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/resources/checkstyle.xml

      <module name="SuppressionFilter">
        <property name="file" value="${config_loc}/checkstyle_suppressions.xml" />
      </module>
    
      <module name="SuppressWarningsFilter" />
    
      <!-- Checks Java files and forbids empty Javadoc comments. -->
      <!-- Although you can use the "JavadocStyle" rule for this, it considers Javadoc -->
      <!-- that only contains a "@return" line to be empty. -->
      <module name="RegexpMultiline">
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 12:48:46 GMT 2021
    - 6K bytes
    - Click Count (0)
  5. docs/zh/docs/how-to/custom-docs-ui-assets.md

        ├── redoc.standalone.js
        ├── swagger-ui-bundle.js
        └── swagger-ui.css
    ```
    
    ### 提供静态文件 { #serve-the-static-files }
    
    - 导入 `StaticFiles`。
    - 在特定路径上“挂载”一个 `StaticFiles()` 实例。
    
    {* ../../docs_src/custom_docs_ui/tutorial002_py310.py hl[7,11] *}
    
    ### 测试静态文件 { #test-the-static-files }
    
    启动你的应用,并访问 [http://127.0.0.1:8000/static/redoc.standalone.js](http://127.0.0.1:8000/static/redoc.standalone.js)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  6. ci/devinfra/docker/windows2022/Dockerfile

             'https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-20240727.tar.xz', \
             'msys2.tar.xz'); \
        Start-Process -FilePath \"C:\Program Files\7-Zip\7z.exe\" -ArgumentList 'x msys2.tar.xz -oC:\TEMP\msys2.tar' -Wait; \
        Start-Process -FilePath \"C:\Program Files\7-Zip\7z.exe\" -ArgumentList 'x C:\TEMP\msys2.tar -oC:\tools' -Wait; \
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Mar 04 19:50:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/path-params.md

    ## Parámetros de path conteniendo paths { #path-parameters-containing-paths }
    
    Imaginemos que tienes una *path operation* con un path `/files/{file_path}`.
    
    Pero necesitas que `file_path` en sí mismo contenga un *path*, como `home/johndoe/myfile.txt`.
    
    Entonces, la URL para ese archivo sería algo como: `/files/home/johndoe/myfile.txt`.
    
    ### Soporte de OpenAPI { #openapi-support }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. docs/en/docs/tutorial/path-params.md

    ```
    
    ## Path parameters containing paths { #path-parameters-containing-paths }
    
    Let's say you have a *path operation* with a path `/files/{file_path}`.
    
    But you need `file_path` itself to contain a *path*, like `home/johndoe/myfile.txt`.
    
    So, the URL for that file would be something like: `/files/home/johndoe/myfile.txt`.
    
    ### OpenAPI support { #openapi-support }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LicenseAnalyzer.java

    package org.elasticsearch.gradle.internal.precommit;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.nio.file.Files;
    import java.util.regex.Pattern;
    
    public class LicenseAnalyzer {
        /*
         * Order here matters. License files can often contain multiple licenses for which the particular piece of software may by used under.
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 27 00:12:58 GMT 2021
    - 12.8K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/SplitPackagesAuditTask.java

                return packages;
            }
    
            private static void walkJavaFiles(Path root, String suffix, Consumer<Path> classConsumer) throws IOException {
                if (Files.exists(root) == false) {
                    return;
                }
                Files.walk(root)
                    .filter(p -> p.toString().endsWith(suffix))
                    .map(root::relativize)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 14.2K bytes
    - Click Count (0)
Back to Top