Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 202 for mage (0.04 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	}
    	imageList := []string{}
    	for image, pinned := range imagesPinned {
    		fakeImageService.SetFakeImagePinned(image, pinned)
    		imageList = append(imageList, image)
    	}
    	fakeImageService.SetFakeImages(imageList)
    
    	actualImages, err := fakeManager.ListImages(ctx)
    	assert.NoError(t, err)
    	for _, image := range actualImages {
    		assert.Equal(t, imagesPinned[image.ID], image.Pinned)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_gc_manager.go

    	err = im.runtime.RemoveImage(ctx, container.ImageSpec{Image: image.id, RuntimeHandler: image.runtimeHandlerUsedToPullImage})
    	if err != nil {
    		return err
    	}
    
    	imageKey := image.id
    	if isRuntimeClassInImageCriAPIEnabled {
    		imageKey = getImageTuple(image.id, image.runtimeHandlerUsedToPullImage)
    	}
    	delete(im.imageRecords, imageKey)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. build/dependencies.yaml

          match: BASEIMAGE\?\=registry\.k8s\.io\/build-image\/debian-base-s390x:[a-zA-Z]+\-v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)
        - path: test/conformance/image/Makefile
          match: BASE_IMAGE_VERSION\?=
        - path: test/images/pets/peer-finder/BASEIMAGE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. JavadocStyleGuide.md

    ```java
    /**
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
     * @return the image at the specified URL
     * @see Image
     */
    ```
    
    When a block tag doesn't fit on a single line, continuation lines are indented four (or more) spaces from the position of the `@`:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. cluster/images/etcd/Makefile

    ifeq ($(ARCH),amd64)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),arm)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-arm:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),arm64)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-arm64:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),ppc64le)
        BASEIMAGE?=registry.k8s.io/build-image/debian-base-ppc64le:bookworm-v1.0.3
    endif
    ifeq ($(ARCH),s390x)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. build/common.sh

    # Increment/change this number if you change the build image (anything under
    # build/build-image) or change the set of volumes in the data container.
    KUBE_BUILD_IMAGE_VERSION_BASE="$(cat "${KUBE_ROOT}/build/build-image/VERSION")"
    readonly KUBE_BUILD_IMAGE_VERSION_BASE
    readonly KUBE_BUILD_IMAGE_VERSION="${KUBE_BUILD_IMAGE_VERSION_BASE}-${KUBE_BUILD_IMAGE_CROSS_TAG}"
    
    # Make it possible to override the `kube-cross` image, and tag independent of `KUBE_BASE_IMAGE_REGISTRY`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. manifests/charts/ztunnel/templates/daemonset.yaml

              operator: Exists
            - effect: NoExecute
              operator: Exists
          containers:
          - name: istio-proxy
    {{- if contains "/" .Values.image }}
            image: "{{ .Values.image }}"
    {{- else }}
            image: "{{ .Values.hub }}/{{ .Values.image | default "ztunnel" }}:{{ .Values.tag }}{{with (.Values.variant )}}-{{.}}{{end}}"
    {{- end }}
            ports:
            - containerPort: 15020
              name: ztunnel-stats
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	pod, status := makeBasePodAndStatus()
    	pod.Spec.InitContainers = []v1.Container{
    		{
    			Name:  "init1",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init2",
    			Image: "bar-image",
    		},
    		{
    			Name:  "init3",
    			Image: "bar-image",
    		},
    	}
    	// Replace the original statuses of the containers with those for the init
    	// containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. docs/orchestration/docker-compose/docker-compose.yaml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: quay.io/minio/minio:RELEASE.2024-06-13T22-53-53Z
      command: server --console-address ":9001" http://minio{1...4}/data{1...2}
      expose:
        - "9000"
        - "9001"
      # environment:
        # MINIO_ROOT_USER: minioadmin
        # MINIO_ROOT_PASSWORD: minioadmin
      healthcheck:
        test: ["CMD", "mc", "ready", "local"]
        interval: 5s
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	}, nil
    }
    
    // isSchedulableAfterPodChange is invoked whenever a pod changed. It checks whether
    // that change made a previously unschedulable pod schedulable.
    // When an unscheduled Pod, which was rejected by TaintToleration, is updated to have a new toleration,
    // it may make the Pod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top