Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 837 for image1 (0.2 sec)

  1. pkg/scheduler/framework/plugins/imagelocality/image_locality.go

    // The size of the image is used as the base score, scaled by a factor which considers how much nodes the image has "spread" to.
    // This heuristic aims to mitigate the undesirable "node heating problem", i.e., pods get assigned to the same or
    // a few nodes due to image locality.
    func scaledImageScore(imageState *framework.ImageStateSummary, totalNumNodes int) int64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_manager_test.go

    		images, _ := fakeRuntime.ListImages(ctx)
    		assert.Equal(t, 1, len(images), "ListImages() count")
    
    		image := images[0]
    		assert.Equal(t, "missing_image:latest", image.ID, "Image ID")
    		assert.Equal(t, "", image.Spec.RuntimeHandler, "image.Spec.RuntimeHandler not empty", "ImageID", image.ID)
    
    		expectedAnnotations := []Annotation{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. docs/zh/docs/tutorial/body-nested-models.md

            "rock",
            "metal",
            "bar"
        ],
        "images": [
            {
                "url": "http://example.com/baz.jpg",
                "name": "The Foo live"
            },
            {
                "url": "http://example.com/dave.jpg",
                "name": "The Baz"
            }
        ]
    }
    ```
    
    !!! info
        请注意 `images` 键现在具有一组 image 对象是如何发生的。
    
    ## 深度嵌套模型
    
    你可以定义任意深度的嵌套模型:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.3K 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. build/root/Makefile

    #           information.
    endef
    .PHONY: release-images
    ifeq ($(PRINT_HELP),y)
    release-images: KUBE_BUILD_CONFORMANCE = y
    release-images:
    	echo "$$RELEASE_IMAGES_HELP_INFO"
    else
    release-images:
    	build/release-images.sh
    endif
    
    define RELEASE_SKIP_TESTS_HELP_INFO
    # Build a release, but skip tests
    #
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/image/jpeg/writer_test.go

    	imgRGBA := image.NewRGBA(bo)
    	// Must use 444 subsampling to avoid lossy RGBA to YCbCr conversion.
    	imgYCbCr := image.NewYCbCr(bo, image.YCbCrSubsampleRatio444)
    	rnd := rand.New(rand.NewSource(123))
    	// Create identical rgba and ycbcr images.
    	for y := bo.Min.Y; y < bo.Max.Y; y++ {
    		for x := bo.Min.X; x < bo.Max.X; x++ {
    			col := color.RGBA{
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:30 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  7. docs/en/docs/img/tutorial/separate-openapi-schemas/image02.png

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

    image05.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 44.5K bytes
    - Viewed (0)
  9. docs/en/docs/img/deployment/deta/image03.png

    image03.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 08 12:32:02 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  10. scripts/playwright/separate_openapi_schemas/image03.py

        page.get_by_role("tab", name="Schema").click()
        page.get_by_label("Schema").get_by_role("button", name="Expand all").click()
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image03.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
    - 892 bytes
    - Viewed (0)
Back to top