Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 837 for image1 (0.38 sec)

  1. pkg/kubelet/util/sliceutils/sliceutils_test.go

    	fooTests := []struct {
    		images ByImageSize
    		i      int
    		j      int
    	}{
    		{buildByImageSize(), 0, 1},
    		{buildByImageSize(), 2, 1},
    	}
    
    	for _, fooTest := range fooTests {
    		fooi := fooTest.images[fooTest.i]
    		fooj := fooTest.images[fooTest.j]
    		fooTest.images.Swap(fooTest.i, fooTest.j)
    		if fooi.ID != fooTest.images[fooTest.j].ID || fooj.ID != fooTest.images[fooTest.i].ID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. build/lib/release.sh

      fi
      kube::log::status "Deleting conformance image ${conformance_tag}"
      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    #  $1 - binary_dir, the directory to save the tared images to.
    #  $2 - arch, architecture for which we are building docker images.
    function kube::release::create_docker_images_for_server() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/snapshot.go

    				NumNodes: imageExistenceMap[name].Len(),
    			}
    		}
    	}
    	return imageStates
    }
    
    // createImageExistenceMap returns a map recording on which nodes the images exist, keyed by the images' names.
    func createImageExistenceMap(nodes []*v1.Node) map[string]sets.Set[string] {
    	imageExistenceMap := make(map[string]sets.Set[string])
    	for _, node := range nodes {
    		for _, image := range node.Status.Images {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. pilot/docker/Dockerfile.proxyv2

    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
    - 1.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/vm_test.go

    			}
    			b := deployment.New(t, t.Clusters().Primaries().Default())
    			images := GetAdditionVMImages(t)
    			for _, image := range images {
    				b = b.WithConfig(echo.Config{
    					Service:    "vm-" + strings.ReplaceAll(image, "_", "-"),
    					Namespace:  apps.Namespace,
    					Ports:      ports.All(),
    					DeployAsVM: true,
    					VMDistro:   image,
    					Subsets:    []echo.SubsetConfig{{}},
    				})
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/imagepolicy/v1alpha1/types.go

    	// This can be in the form image:tag or image@SHA:012345679abcdef.
    	// +optional
    	Image string `json:"image,omitempty" protobuf:"bytes,1,opt,name=image"`
    	// In future, we may add command line overrides, exec health check command lines, and so on.
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    type ImageReviewStatus struct {
    	// Allowed indicates that all images were allowed to be run.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. pkg/kubelet/config/flags.go

    	fs.StringVar(&s.PodSandboxImage, "pod-infra-container-image", s.PodSandboxImage, fmt.Sprintf("Specified image will not be pruned by the image garbage collector. CRI implementations have their own configuration to set this image."))
    	fs.MarkDeprecated("pod-infra-container-image", "will be removed in a future release. Image garbage collector will get sandbox image information from CRI.")
    
    	// Image credential provider settings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. scripts/playwright/separate_openapi_schemas/image04.py

        page.get_by_role("button", name="Item-Output").click()
        page.set_viewport_size({"width": 960, "height": 820})
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image04.png"
        )
        # ---------------------
        context.close()
        browser.close()
    
    
    process = subprocess.Popen(
        ["uvicorn", "docs_src.separate_openapi_schemas.tutorial001:app"]
    )
    try:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 881 bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/kt/PostMultipart.kt

      fun run() {
        // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image
        val requestBody =
          MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart(
              "image",
              "logo-square.png",
              File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG),
            )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. docs/ja/docs/tutorial/body-nested-models.md

    {!../../../docs_src/body_nested_models/tutorial007.py!}
    ```
    
    !!! info "情報"
        `Offer`は`Item`のリストであり、オプションの`Image`のリストを持っていることに注目してください。
    
    ## 純粋なリストのボディ
    
    期待するJSONボディのトップレベルの値がJSON`array`(Pythonの`list`)であれば、Pydanticモデルと同じように、関数のパラメータで型を宣言することができます:
    
    ```Python
    images: List[Image]
    ```
    
    以下のように:
    
    ```Python hl_lines="15"
    {!../../../docs_src/body_nested_models/tutorial008.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top