Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,254 for mage (0.09 sec)

  1. src/image/image.go

    // Package image implements a basic 2-D image library.
    //
    // The fundamental interface is called [Image]. An [Image] contains colors, which
    // are described in the image/color package.
    //
    // Values of the [Image] interface are created either by calling functions such
    // as [NewRGBA] and [NewPaletted], or by calling [Decode] on an [io.Reader] containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    !!! warning
        There's a high chance that you **don't** need this base image or any other similar one, and would be better off by building the image from scratch as [described above in: Build a Docker Image for FastAPI](#build-a-docker-image-for-fastapi).
    
    This image has an **auto-tuning** mechanism included to set the **number of worker processes** based on the CPU cores available.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugin/plugin.go

    // return CredentialProviderResponse via stdout.
    func (e *execPlugin) ExecPlugin(ctx context.Context, image string) (*credentialproviderapi.CredentialProviderResponse, error) {
    	klog.V(5).Infof("Getting image %s credentials from external exec plugin %s", image, e.name)
    
    	authRequest := &credentialproviderapi.CredentialProviderRequest{Image: image}
    	data, err := e.encodeRequest(authRequest)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. docs/de/docs/deployment/docker.md

    ## Offizielles Docker-Image mit Gunicorn – Uvicorn
    
    Es gibt ein offizielles Docker-Image, in dem Gunicorn mit Uvicorn-Workern ausgeführt wird, wie in einem vorherigen Kapitel beschrieben: [Serverworker – Gunicorn mit Uvicorn](server-workers.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  5. src/image/png/reader_test.go

    // transparency (in the tRNS chunk) is separate to the color/grayscale/palette
    // color model (in the IHDR chunk). The Go model is that the concrete
    // image.Image type returned by png.Decode, such as image.RGBA (with all pixels
    // having 100% alpha) or image.NRGBA, encapsulates whether or not the image has
    // transparency. This map is a hack to work around the fact that the Go model
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    	}}
    	g0 := &GIF{
    		Image: []*image.Paletted{
    			image.NewPaletted(image.Rect(0, 0, w, h), pals[0]),
    			image.NewPaletted(image.Rect(0, 0, w, h), pals[1]),
    			image.NewPaletted(image.Rect(0, 0, w, h), pals[2]),
    			image.NewPaletted(image.Rect(0, 0, w, h), pals[3]),
    		},
    		Delay:    make([]int, len(pals)),
    		Disposal: make([]byte, len(pals)),
    		Config: image.Config{
    			ColorModel: pals[2],
    			Width:      w,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/helpers_test.go

    	c := &runtimeapi.Container{
    		Id: "test-id",
    		Metadata: &runtimeapi.ContainerMetadata{
    			Name:    "test-name",
    			Attempt: 1,
    		},
    		Image:    &runtimeapi.ImageSpec{Image: "test-image"},
    		ImageId:  "test-image-id",
    		ImageRef: "test-image-ref",
    		State:    runtimeapi.ContainerState_CONTAINER_RUNNING,
    		Annotations: map[string]string{
    			containerHashLabel: "1234",
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/imagelocality/image_locality_test.go

    		Containers: []v1.Container{
    			{
    
    				Image: "gcr.io/40",
    			},
    			{
    				Image: "gcr.io/250",
    			},
    		},
    	}
    
    	test40300 := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Image: "gcr.io/40",
    			},
    			{
    				Image: "gcr.io/300",
    			},
    		},
    	}
    
    	testMinMax := v1.PodSpec{
    		Containers: []v1.Container{
    			{
    				Image: "gcr.io/10",
    			},
    			{
    				Image: "gcr.io/4000",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 06:17:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/image/draw/draw_test.go

    }
    
    func makeGolden(dst image.Image, r image.Rectangle, src image.Image, sp image.Point, mask image.Image, mp image.Point, op Op) image.Image {
    	// Since golden is a newly allocated image, we don't have to check if the
    	// input source and mask images and the output golden image overlap.
    	b := dst.Bounds()
    	sb := src.Bounds()
    	mb := image.Rect(-1e9, -1e9, 1e9, 1e9)
    	if mask != nil {
    		mb = mask.Bounds()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. 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)
Back to top