Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 606 for yaml (0.08 seconds)

  1. .editorconfig

    ij_java_names_count_to_use_import_on_demand = 999
    ij_java_imports_layout = *,|,com.**,|,org.**,|,java.**,javax.**,|,$*
    
    [*.json]
    indent_size = 2
    
    [*.py]
    indent_size = 2
    
    [*.sh]
    indent_size = 2
    
    [*.{yml,yaml}]
    indent_size = 2
    
    [*.{xsd,xml}]
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 10 14:05:55 GMT 2021
    - 9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

    import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Locale;
    import java.util.Objects;
    import java.util.stream.Collectors;
    
    /**
     * This class models the contents of a changelog YAML file. We validate it using a
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestApiTask.java

                }
                // check output for cases where tests are copied programmatically
                File yamlTestOutputDir = new File(additionalYamlTestsDir.get().getAsFile(), REST_TEST_PREFIX);
                if (yamlTestOutputDir.exists()) {
                    return Files.walk(yamlTestOutputDir.toPath()).anyMatch(p -> p.getFileName().toString().endsWith("yml"));
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 7.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

            String api = "foo.json"
            String test = "10_basic.yml"
            //add the compatible test and api files, these are the prior version's normal yaml rest tests
            file("distribution/bwc/minor/checkoutDir/rest-api-spec/src/main/resources/rest-api-spec/api/" + api) << ""
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                    .get(stream -> stream.map(String::trim).toArray(n -> new String[n]));
        }
    
        /**
         * Loads artifacts from a YAML-based repository.
         *
         * @param url the URL of the YAML repository
         * @return a list of artifacts loaded from the repository
         * @throws PluginException if failed to parse the repository content
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Mar 04 15:19:41 GMT 2026
    - 25.1K bytes
    - Click Count (0)
  6. helm/minio/README.md

    ```bash
    helm get values my-release > old_values.yaml
    ```
    
    Then change the field `image.tag` in `old_values.yaml` file with MinIO image tag you want to use. Now update the chart using
    
    ```bash
    helm upgrade -f old_values.yaml my-release minio/minio
    ```
    
    Default upgrade strategies are specified in the `values.yaml` file. Update these fields if you'd like to use a different strategy.
    
    ### Configuration
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

    import java.util.function.Function;
    import java.util.stream.Collectors;
    import javax.inject.Inject;
    
    import static org.elasticsearch.gradle.util.GradleUtils.getProjectPathFromTask;
    
    /**
     * Copies the Rest YAML test to the current projects test resources output directory.
     * This is intended to be be used from {@link RestResourcesPlugin} since the plugin wires up the needed
     * configurations and custom extensions.
     *
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

                String body = /(?<body>(?:\n(?!$badBody)[^\n]+)+)/
                String rawRequest = /(?:$method\s+$pathAndQuery$body?)/
                String yamlRequest = /(?:startyaml(?s)(?<yaml>.+?)(?-s)endyaml)/
                String nonComment = /(?:$rawRequest|$yamlRequest)/
                String comment = /(?<comment>#.+)/
                /(?:$comment|$nonComment)\n+/
            }()
    
            /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/alternatives.md

    但文件仍然缺失,於是 APISpec 出現了。
    
    它是多個框架的外掛(Starlette 也有對應外掛)。
    
    它的作法是:你在處理路由的每個函式的 docstring 中,用 YAML 格式撰寫結構定義。
    
    然後它會產生 OpenAPI schemas。
    
    在 Flask、Starlette、Responder 等框架中都是這樣運作。
    
    但這又帶來一個問題:在 Python 字串中(大型 YAML)加入一段微語法。
    
    編輯器幫不上太多忙。而且如果我們修改了參數或 Marshmallow 的 schemas 卻忘了同步修改 YAML docstring,產生的結構就會過時。
    
    /// info
    
    APISpec 由與 Marshmallow 相同的開發者創建。
    
    ///
    
    /// check | 啟發 **FastAPI**
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.34.md

    - Added machine readable output options (JSON & YAML) to kubectl api-resources ([#132604](https://github.com/kubernetes/kubernetes/pull/132604), [@dharmit](https://github.com/dharmit)) [SIG Apps, CLI and Network]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:19:43 GMT 2026
    - 368.7K bytes
    - Click Count (2)
Back to Top