Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for imageutils (0.45 sec)

  1. pkg/scheduler/testing/wrappers.go

    	resourcev1alpha2 "k8s.io/api/resource/v1alpha2"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	imageutils "k8s.io/kubernetes/test/utils/image"
    	"k8s.io/utils/ptr"
    )
    
    var zero int64
    
    // NodeSelectorWrapper wraps a NodeSelector inside.
    type NodeSelectorWrapper struct{ v1.NodeSelector }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/image/internal/imageutil/imageutil.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:generate go run gen.go
    
    // Package imageutil contains code shared by image-related packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 24 01:01:20 UTC 2015
    - 276 bytes
    - Viewed (0)
  3. src/image/internal/imageutil/gen.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	if err := os.WriteFile("impl.go", out, 0660); err != nil {
    		log.Fatal(err)
    	}
    }
    
    const pre = `// Code generated by go run gen.go; DO NOT EDIT.
    
    package imageutil
    
    import (
    	"image"
    )
    
    // DrawYCbCr draws the YCbCr source image on the RGBA destination image with
    // r.Min in dst aligned with sp in src. It reports whether the draw was
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  4. src/image/internal/imageutil/impl.go

    // Code generated by go run gen.go; DO NOT EDIT.
    
    package imageutil
    
    import (
    	"image"
    )
    
    // DrawYCbCr draws the YCbCr source image on the RGBA destination image with
    // r.Min in dst aligned with sp in src. It reports whether the draw was
    // successful. If it returns false, no dst pixels were changed.
    //
    // This function assumes that r is entirely within dst's bounds and the
    // translation of r from dst coordinate space to src coordinate space is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    //
    // See "The Go image/draw package" for an introduction to this package:
    // https://golang.org/doc/articles/image_draw.html
    package draw
    
    import (
    	"image"
    	"image/color"
    	"image/internal/imageutil"
    )
    
    // m is the maximum color value returned by image.Color.RGBA.
    const m = 1<<16 - 1
    
    // Image is an image.Image with a Set method to change a single pixel.
    type Image interface {
    	image.Image
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/image/jpeg/reader.go

    // Package jpeg implements a JPEG image decoder and encoder.
    //
    // JPEG is defined in ITU-T T.81: https://www.w3.org/Graphics/JPEG/itu-t81.pdf.
    package jpeg
    
    import (
    	"image"
    	"image/color"
    	"image/internal/imageutil"
    	"io"
    )
    
    // A FormatError reports that the input is not a valid JPEG.
    type FormatError string
    
    func (e FormatError) Error() string { return "invalid JPEG format: " + string(e) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. src/go/build/deps_test.go

    	< database/sql/driver;
    
    	database/sql/driver, math/rand/v2 < database/sql;
    
    	# images
    	FMT, compress/lzw, compress/zlib
    	< image/color
    	< image, image/color/palette
    	< image/internal/imageutil
    	< image/draw
    	< image/gif, image/jpeg, image/png;
    
    	# cgo, delayed as long as possible.
    	# If you add a dependency on CGO, you must add the package
    	# to cgoPackages in cmd/dist/test.go as well.
    	RUNTIME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top