Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 318 for rounds (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/task-dag-examples.graffle

    l\qc\partightenfactor0 \f0\fs24 \cf0 assemble}Bounds{{434, 286}, {82, 35}}ClassShapedGraphicFo.2b0.0g0.0r0.0space9eaea0911d89d6.9887564182281494stro{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf400 {\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 check}Bounds{{492, 361}, {82, 35}}ClassShapedGraphicFo.2b0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/ant-task-migration.graffle

    x6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 assemble}Bounds{{383.5, 146}, {100.25, 43}}ClassShapedGraphicFo-RegularSize12ID17Sty{\rtf1\ansi\ansicpg1252\cocoartf1671 {\fonttbl\f0\fnil\fcharset0 Menlo-Regular;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs24 \cf0 ant_build}Bounds{{162.25, 139.5}, {36.5, 56}}ClassShapedGraphicID.47126116071428...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/image/jpeg/reader_test.go

    			t.Errorf("%s: %v", tc+".progressive.jpeg", err)
    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("%s: bounds differ: %v and %v", tc, m0.Bounds(), m1.Bounds())
    			continue
    		}
    		// All of the video-*.jpeg files are 150x103.
    		if m0.Bounds() != image.Rect(0, 0, 150, 103) {
    			t.Errorf("%s: bad bounds: %v", tc, m0.Bounds())
    			continue
    		}
    
    		switch m0 := m0.(type) {
    		case *image.YCbCr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. src/image/jpeg/reader.go

    		bounds := d.img3.Bounds()
    		img := image.NewRGBA(bounds)
    		imageutil.DrawYCbCr(img, bounds, d.img3, bounds.Min)
    		for iBase, y := 0, bounds.Min.Y; y < bounds.Max.Y; iBase, y = iBase+img.Stride, y+1 {
    			for i, x := iBase+3, bounds.Min.X; x < bounds.Max.X; i, x = i+4, x+1 {
    				img.Pix[i] = 255 - d.blackPix[(y-bounds.Min.Y)*d.blackStride+(x-bounds.Min.X)]
    			}
    		}
    		return &image.CMYK{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. src/image/draw/draw_test.go

    				b := dst.Bounds()
    				// Draw the (src, mask, op) onto a copy of dst using a slow but obviously correct implementation.
    				golden := makeGolden(dst, b, src, src.Bounds().Min, nil, image.Point{}, op)
    				if !b.Eq(golden.Bounds()) {
    					t.Errorf("drawOverlap xoff=%d,yoff=%d: bounds %v versus %v", xoff, yoff, dst.Bounds(), golden.Bounds())
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/Types.java

       * Returns {@code ? extends X} if any of {@code bounds} is a subtype of {@code X[]}; or null
       * otherwise.
       */
      @CheckForNull
      private static Type subtypeOfComponentType(Type[] bounds) {
        for (Type bound : bounds) {
          Type componentType = getComponentType(bound);
          if (componentType != null) {
            // Only the first bound can be a class or array.
            // Bounds after the first can only be interfaces.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/image/png/reader_test.go

    	// Write the IMAGE.
    	io.WriteString(w, "IMAGE {\n    pixels hex\n")
    	for y := bounds.Min.Y; y < bounds.Max.Y; y++ {
    		switch {
    		case cm == color.GrayModel:
    			for x := bounds.Min.X; x < bounds.Max.X; x++ {
    				gray := png.At(x, y).(color.Gray)
    				fmt.Fprintf(w, "%02x", gray.Y)
    			}
    		case cm == color.Gray16Model:
    			for x := bounds.Min.X; x < bounds.Max.X; x++ {
    				gray16 := png.At(x, y).(color.Gray16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  8. src/image/gif/reader_test.go

    	copy(gif, testGIF)
    	// Make the bounds too big, just by one.
    	gif[32] = 2
    	want := "gif: frame bounds larger than image bounds"
    	try(t, gif, want)
    
    	// Make the bounds too small; does not trigger bounds
    	// check, but now there's too much data.
    	gif[32] = 0
    	want = "gif: too much image data"
    	try(t, gif, want)
    	gif[32] = 1
    
    	// Make the bounds really big, expect an error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/Types.java

       * Returns {@code ? extends X} if any of {@code bounds} is a subtype of {@code X[]}; or null
       * otherwise.
       */
      @CheckForNull
      private static Type subtypeOfComponentType(Type[] bounds) {
        for (Type bound : bounds) {
          Type componentType = getComponentType(bound);
          if (componentType != null) {
            // Only the first bound can be a class or array.
            // Bounds after the first can only be interfaces.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    	// that call returning and now the stack may have changed (perhaps the
    	// C thread is running a coroutine library). We need to update the
    	// stack bounds for this case.
    	//
    	// N.B. we need to update the stack bounds even if SP appears to
    	// already be in bounds. Our "bounds" may actually be estimated dummy
    	// bounds (below). The actual stack bounds could have shifted but still
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top