Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,066 for image2 (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/hack/build-image.sh

      rm "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver/artifacts/simple-image/apiextensions-apiserver"
    }
    trap cleanup EXIT
    
    pushd "${KUBE_ROOT}/staging/src/k8s.io/apiextensions-apiserver"
    cp -v ../../../../_output/local/bin/linux/amd64/apiextensions-apiserver ./artifacts/simple-image/apiextensions-apiserver
    docker build -t apiextensions-apiserver:latest ./artifacts/simple-image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    image::images/C4_2_Container.svg[]
    
    ## Level 3: Component diagram
    
    The following diagram detail each container components and gets closer to how the Kotlin DSL is organized.
    It should be useful enough to know where to find what in the Kotlin DSL source code.
    
    image::images/C4_3_Component.svg[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. build/common.sh

    }
    
    # Detect if a specific image exists
    #
    # $1 - image repo name
    # $2 - image tag
    function kube::build::docker_image_exists() {
      [[ -n $1 && -n $2 ]] || {
        kube::log::error "Internal error. Image not specified in docker_image_exists."
        exit 2
      }
    
      [[ $("${DOCKER[@]}" images -q "${1}:${2}") ]]
    }
    
    # Delete all images that match a tag prefix except for the "current" version
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/deta/image04.png

    image04.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 08 12:32:02 UTC 2023
    - 48.6K bytes
    - Viewed (0)
  5. docs/en/docs/img/tutorial/separate-openapi-schemas/image01.png

    image01.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  6. docs/en/docs/img/tutorial/separate-openapi-schemas/image03.png

    image03.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 83.2K bytes
    - Viewed (0)
  7. scripts/playwright/separate_openapi_schemas/image05.py

        page.get_by_role("button", name="Item", exact=True).click()
        page.set_viewport_size({"width": 960, "height": 700})
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image05.png"
        )
    
        # ---------------------
        context.close()
        browser.close()
    
    
    process = subprocess.Popen(
        ["uvicorn", "docs_src.separate_openapi_schemas.tutorial002:app"]
    )
    try:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 829 bytes
    - Viewed (0)
  8. operator/docker/Dockerfile.operator

    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 900 bytes
    - Viewed (0)
  9. pilot/docker/Dockerfile.ztunnel

    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    # The following section is used as base image if BASE_DISTRIBUTION=distroless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 944 bytes
    - Viewed (0)
  10. src/debug/macho/fat.go

    		return nil, &FormatError{offset, "file contains no images", nil}
    	}
    
    	// Combine the Cpu and SubCpu (both uint32) into a uint64 to make sure
    	// there are not duplicate architectures.
    	seenArches := make(map[uint64]bool)
    	// Make sure that all images are for the same MH_ type.
    	var machoType Type
    
    	// Following the fat_header comes narch fat_arch structs that index
    	// Mach-O images further in the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top