Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 210 of 308 for yams (0.02 seconds)

  1. TESTING.asciidoc

    themselves can be written in either Java or with a YAML based DSL.
    
    YAML based REST tests should be preferred since these are shared between all
    the elasticsearch official clients. The YAML based tests describe the
    operations to be executed and the obtained results that need to be tested.
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  2. android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java

        Runnable tearDownRunnable = () -> tearDown[0] = true;
    
        MyTestSuiteBuilder builder = new MyTestSuiteBuilder();
        Test test =
            builder
                .usingGenerator("yam")
                .named("yam")
                .withFeatures(CollectionFeature.NONE)
                .withSetUp(setUpRunnable)
                .withTearDown(tearDownRunnable)
                .createTestSuite();
        TestResult result = new TestResult();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  3. 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)
  4. .ci/jobs.t/elastic+elasticsearch+periodic+java-fips-matrix.yml

      - job-display-name: "elastic / elasticsearch # %BRANCH% - java fips compatibility matrix"
      - job-description: "Testing of the Elasticsearch %BRANCH% branch java FIPS compatibility matrix.\n"
      - matrix-yaml-file: ".ci/matrix-runtime-javas-fips.yml"
      - matrix-variable: ES_RUNTIME_JAVA
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 24 17:56:51 GMT 2021
    - 485 bytes
    - Click Count (0)
  5. scripts/contributors.py

    import logging
    import secrets
    import subprocess
    from collections import Counter
    from datetime import datetime
    from pathlib import Path
    from typing import Any
    
    import httpx
    import yaml
    from github import Github
    from pydantic import BaseModel, SecretStr
    from pydantic_settings import BaseSettings
    
    github_graphql_url = "https://api.github.com/graphql"
    
    
    prs_query = """
    query Q($after: String) {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Dec 16 12:34:01 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  6. docs/ru/docs/alternatives.md

    Он работает так: вы пишете определение схемы в формате YAML внутри докстринга каждой функции, обрабатывающей маршрут.
    
    И он генерирует схемы OpenAPI.
    
    Так это работает во Flask, Starlette, Responder и т. д.
    
    Но у нас снова возникает проблема: появляется микро-синтаксис внутри строки Python (большой YAML).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 37.1K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPlugin.java

    import static org.elasticsearch.gradle.internal.test.rest.RestTestUtil.registerTestTask;
    import static org.elasticsearch.gradle.internal.test.rest.RestTestUtil.setupTestDependenciesDefaults;
    
    /**
     * Apply this plugin to run the YAML based REST tests.
     */
    public class InternalYamlRestTestPlugin implements Plugin<Project> {
    
        public static final String SOURCE_SET_NAME = "yamlRestTest";
    
        @Override
        public void apply(Project project) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 16:04:42 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  8. guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java

        Runnable tearDownRunnable = () -> tearDown[0] = true;
    
        MyTestSuiteBuilder builder = new MyTestSuiteBuilder();
        Test test =
            builder
                .usingGenerator("yam")
                .named("yam")
                .withFeatures(CollectionFeature.NONE)
                .withSetUp(setUpRunnable)
                .withTearDown(tearDownRunnable)
                .createTestSuite();
        TestResult result = new TestResult();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  9. scripts/tests/test_translation_fixer/test_code_blocks/data/translated_doc_wrong_lang_code.md

    def hello_world():
        # Comment with indentation
        print("Hello, world!")  # Print greeting
    ```
    
    Some more text
    
    The following block has wrong language code (should be TOML):
    
    ```yaml
    # This is a sample TOML code block
    title = "TOML Example"  # Title of the document
    ```
    
    And more text
    
    ```console
    // Use the command "live" and pass the language code as a CLI argument
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 21:48:08 GMT 2026
    - 946 bytes
    - Click Count (0)
  10. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-upgrade-tests.yml

        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-8-packaging
                - ubuntu-20.04-packaging
          - axis:
              type: yaml
              filename: ".ci/bwcVersions"
              name: "BWC_VERSION"
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
              properties-content: |
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 10 19:43:38 GMT 2021
    - 1.9K bytes
    - Click Count (0)
Back to Top