Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 771 for image2 (0.18 sec)

  1. 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)
  2. 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)
  3. docs_src/body_nested_models/tutorial007_py39.py

    from fastapi import FastAPI
    from pydantic import BaseModel, HttpUrl
    
    app = FastAPI()
    
    
    class Image(BaseModel):
        url: HttpUrl
        name: str
    
    
    class Item(BaseModel):
        name: str
        description: Union[str, None] = None
        price: float
        tax: Union[float, None] = None
        tags: set[str] = set()
        images: Union[list[Image], None] = None
    
    
    class Offer(BaseModel):
        name: str
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 570 bytes
    - Viewed (0)
  4. pkg/apis/imagepolicy/types.go

    type ImageReviewContainerSpec struct {
    	// This can be in the form image:tag or image@SHA:012345679abcdef.
    	Image string
    	// 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.
    	Allowed bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. scripts/playwright/separate_openapi_schemas/image01.py

        page.get_by_text("POST/items/Create Item").click()
        page.get_by_role("tab", name="Schema").first.click()
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image01.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
    - 819 bytes
    - Viewed (0)
  7. 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)
  8. src/image/png/example_test.go

    // gopherPNG creates an io.Reader by decoding the base64 encoded image data string in the gopher constant.
    func gopherPNG() io.Reader { return base64.NewDecoder(base64.StdEncoding, strings.NewReader(gopher)) }
    
    func ExampleDecode() {
    	// This example uses png.Decode which can only decode PNG images.
    	// Consider using the general image.Decode as it can sniff and decode any registered image format.
    	img, err := png.Decode(gopherPNG())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 19:47:04 UTC 2016
    - 3.6K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/PostMultipart.java

            .addFormDataPart("image", "logo-square.png",
                RequestBody.create(
                    new File("docs/images/logo-square.png"),
                    MEDIA_TYPE_PNG))
            .build();
    
        Request request = new Request.Builder()
            .header("Authorization", "Client-ID " + IMGUR_CLIENT_ID)
            .url("https://api.imgur.com/3/image")
            .post(requestBody)
            .build();
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jun 24 12:59:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. releasenotes/notes/wasm-multilayer.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** WasmPlugin images (docker and OCI standard image) to support more than one layer as per spec changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 20:20:52 UTC 2022
    - 261 bytes
    - Viewed (0)
Back to top