Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for rectangle (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    	// resumed at once, as a starting point we assume that each such goroutine
    	// is taking 1/Nth of a seat for M milliseconds.
    	// We allow the accounting of that work in P&F to be reshaped into another
    	// rectangle of equal area for practical reasons.
    	var finalSeats uint64
    	var additionalLatency time.Duration
    
    	// TODO: Make this unconditional after we tune the algorithm better.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                compileJava {
                    options.compilerArgs = ['-sourcepath', files('src/main/java').asPath]
                }
            '''
            file('src/main/java/Square.java') << 'public class Square extends Rectangle {}'
    
            when:
            fails 'compileJava'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. src/image/gif/reader_test.go

    		}
    	}
    }
    
    // See golang.org/issue/22237
    func TestDecodeMemoryConsumption(t *testing.T) {
    	const frames = 3000
    	img := image.NewPaletted(image.Rectangle{Max: image.Point{1, 1}}, palette.WebSafe)
    	hugeGIF := &GIF{
    		Image:    make([]*image.Paletted, frames),
    		Delay:    make([]int, frames),
    		Disposal: make([]byte, frames),
    	}
    	for i := 0; i < frames; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/image/gif/writer.go

    		return
    	}
    
    	b := pm.Bounds()
    	if b.Min.X < 0 || b.Max.X >= 1<<16 || b.Min.Y < 0 || b.Max.Y >= 1<<16 {
    		e.err = errors.New("gif: image block is too large to encode")
    		return
    	}
    	if !b.In(image.Rectangle{Max: image.Point{e.g.Config.Width, e.g.Config.Height}}) {
    		e.err = errors.New("gif: image block is out of bounds")
    		return
    	}
    
    	transparentIndex := -1
    	for i, c := range pm.Palette {
    		if c == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Point).Sub", Method, 0},
    		{"(Rectangle).Add", Method, 0},
    		{"(Rectangle).At", Method, 5},
    		{"(Rectangle).Bounds", Method, 5},
    		{"(Rectangle).Canon", Method, 0},
    		{"(Rectangle).ColorModel", Method, 5},
    		{"(Rectangle).Dx", Method, 0},
    		{"(Rectangle).Dy", Method, 0},
    		{"(Rectangle).Empty", Method, 0},
    		{"(Rectangle).Eq", Method, 0},
    		{"(Rectangle).In", Method, 0},
    		{"(Rectangle).Inset", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. src/image/jpeg/reader_test.go

    		}
    		if i == 0 {
    			i = 1
    		} else {
    			i *= 2
    		}
    	}
    }
    
    // check checks that the two pix data are equal, within the given bounds.
    func check(bounds image.Rectangle, pix0, pix1 []byte, stride0, stride1 int) error {
    	if stride0 <= 0 || stride0%8 != 0 {
    		return fmt.Errorf("bad stride %d", stride0)
    	}
    	if stride1 <= 0 || stride1%8 != 0 {
    		return fmt.Errorf("bad stride %d", stride1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg image, method (Rectangle) Add(Point) Rectangle
    pkg image, method (Rectangle) Canon() Rectangle
    pkg image, method (Rectangle) Dx() int
    pkg image, method (Rectangle) Dy() int
    pkg image, method (Rectangle) Empty() bool
    pkg image, method (Rectangle) Eq(Rectangle) bool
    pkg image, method (Rectangle) In(Rectangle) bool
    pkg image, method (Rectangle) Inset(int) Rectangle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. src/image/png/reader.go

    func (d *decoder) mergePassInto(dst image.Image, src image.Image, pass int) {
    	p := interlacing[pass]
    	var (
    		srcPix        []uint8
    		dstPix        []uint8
    		stride        int
    		rect          image.Rectangle
    		bytesPerPixel int
    	)
    	switch target := dst.(type) {
    	case *image.Alpha:
    		srcPix = src.(*image.Alpha).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    2B97          ; valid                  ;      ; NV8    # 13.0 SYMBOL FOR TYPE A ELECTRONICS
    2B98..2BB9    ; valid                  ;      ; NV8    # 7.0  THREE-D TOP-LIGHTED LEFTWARDS EQUILATERAL ARROWHEAD..UP ARROWHEAD IN A RECTANGLE BOX
    2BBA..2BBC    ; valid                  ;      ; NV8    # 11.0 OVERLAPPING WHITE SQUARES..OVERLAPPING BLACK SQUARES
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. src/testdata/Isaac.Newton-Opticks.txt

    refracting Surface into one and the same Medium, the Interval of the
    following Fits of easy Reflexion and Transmission are either accurately
    or very nearly, as the Rectangle of the Secant of the Angle of
    Refraction, and of the Secant of another Angle, whose Sine is the first
    of 106 arithmetical mean Proportionals, between the Sines of Incidence
    and Refraction, counted from the Sine of Refraction._
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top