Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for bar_tag (0.14 seconds)

  1. tests/test_enforce_once_required_parameter.py

    
    def test_get_valid():
        response = client.get("/foo", params={"client_id": "bar"})
        assert response.status_code == 200
        assert response.json() == {"client_id": "bar_key", "client_tag": "bar_tag"}
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "components": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DockerBase.java

        UBI("docker.elastic.co/ubi8/ubi-minimal:latest", "-ubi8"),
    
        // The Iron Bank base image is UBI (albeit hardened), but we are required to parameterize the Docker build
        IRON_BANK("${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG}", "-ironbank"),
    
        // Base image with extras for Cloud
        CLOUD("centos:8", "-cloud"),
    
        // Based on CLOUD above, with more extras. We don't set a base image because
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 1.4K bytes
    - Click Count (0)
Back to Top