Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 771 for image2 (0.18 sec)

  1. pkg/config/analysis/analyzers/testdata/injection-image-distroless-no-meshconfig.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        proxy.istio.io/config: |
          image:
            imageType: distroless
      labels:
        app: details
      name: details-v1-pod-annotation-override
      namespace: annotation-override
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.1-distroless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 15:31:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/image/decode_example_test.go

    // This example demonstrates decoding a JPEG image and examining its pixels.
    package image_test
    
    import (
    	"encoding/base64"
    	"fmt"
    	"image"
    	"log"
    	"strings"
    
    	// Package image/jpeg is not used explicitly in the code below,
    	// but is imported for its initialization side-effect, which allows
    	// image.Decode to understand JPEG formatted images. Uncomment these
    	// two lines to also understand GIF and PNG images:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 03:16:17 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/hello-image-pull-secret.yaml

        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          imagePullSecrets:
            - name: fooSecret
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 04 18:34:21 UTC 2020
    - 510 bytes
    - Viewed (0)
  4. build/README.md

    `kube-build` container image is built by first creating a "context" directory in `_output/images/build-image`.  It is done there instead of at the root of the Kubernetes repo to minimize the amount of data we need to package up when building the image.
    
    There are 3 different containers instances that are run from this image.  The first is a "data" container to store all data that needs to persist across to support incremental builds. Next there is an "rsync" container that is used to transfer...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/hello-image-pull-secret.yaml.injected

            service.istio.io/canonical-name: hello
            service.istio.io/canonical-revision: latest
            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
          - args:
            - proxy
            - sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inject/hello-multiple-image-secrets.yaml.injected

            service.istio.io/canonical-name: hello
            service.istio.io/canonical-revision: latest
            tier: backend
            track: stable
        spec:
          containers:
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
          - args:
            - proxy
            - sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	err := m.imageService.RemoveImage(ctx, &runtimeapi.ImageSpec{Image: image.Image})
    	if err != nil {
    		klog.ErrorS(err, "Failed to remove image", "image", image.Image)
    		return err
    	}
    
    	return nil
    }
    
    // ImageStats returns the statistics of the image.
    // Notice that current logic doesn't really work for images which share layers (e.g. docker image),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/runtime/runtime.go

    	var errs []error
    	errChan := make(chan error, len(images))
    
    	klog.V(1).Info("pulling all images in parallel")
    	for _, img := range images {
    		image := img
    		go func() {
    			if ifNotPresent {
    				exists := imageExistsFunc(image)
    				if exists {
    					klog.V(1).Infof("image exists: %s", image)
    					errChan <- nil
    					return
    				}
    			}
    			err := pullImageFunc(image)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/README.md

       VMImage:    vm.DefaultVMImage
    }
    ```
    
    The default image referenced with `DefaultVMImage` from `vm` package should be used for all pre-submit tests since
    this is the only image available in the pre-submit stage. Using additional images are only possible in
    post-submit tests as shown in the [next section](#scenario-2-supporting-additional-os-images ).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. docs_src/body_nested_models/tutorial008.py

    from typing import List
    
    from fastapi import FastAPI
    from pydantic import BaseModel, HttpUrl
    
    app = FastAPI()
    
    
    class Image(BaseModel):
        url: HttpUrl
        name: str
    
    
    @app.post("/images/multiple/")
    async def create_multiple_images(images: List[Image]):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 12 19:41:44 UTC 2020
    - 273 bytes
    - Viewed (0)
Back to top