Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for drawLine (0.64 sec)

  1. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ctx.strokeStyle='rgb(0, 0, 0)';tr.ui.b.drawLine(ctx,0,height,width,height);ctx.stroke();if(!hasInterestRange)return;tr.ui.b.drawLine(ctx,0,xAxisHeightPx,width,xAxisHeightPx);ctx.stroke();let...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  2. src/image/draw/bench_test.go

    	"image/color"
    	"reflect"
    	"testing"
    )
    
    const (
    	dstw, dsth = 640, 480
    	srcw, srch = 400, 300
    )
    
    var palette = color.Palette{
    	color.Black,
    	color.White,
    }
    
    // bench benchmarks drawing src and mask images onto a dst image with the
    // given op and the color models to create those images from.
    // The created images' pixels are initialized to non-zero values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            extensionMap.put("odp", "pdf");
            extensionMap.put("otp", "pdf");
            extensionMap.put("sxi", "pdf");
            extensionMap.put("ppt", "pdf");
            extensionMap.put("pptx", "pdf");
            // Drawing Formats
            extensionMap.put("odg", "svg");
            extensionMap.put("otg", "svg");
    
            extractorMap.put("pdf", new PdfExtractor());
            extractorMap.put("svg", new XmlExtractor());
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            // Disallow classes from Groovy Jar that reference external classes. Such classes must be loaded from astTransformClassLoader,
            // or a NoClassDefFoundError will occur. Essentially this is drawing a line between the Groovy compiler and the Groovy
            // library, albeit only for selected classes that run a high risk of being statically referenced from a transform.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    // decryptionKey is the parsed and expanded form of a PKE decryption key.
    type decryptionKey struct {
    	s [k]nttElement // ByteDecode₁₂(dk[:decryptionKeySize])
    }
    
    // GenerateKey generates a new decapsulation key, drawing random bytes from
    // crypto/rand. The decapsulation key must be kept secret.
    func GenerateKey() (*DecapsulationKey, error) {
    	// The actual logic is in a separate function to outline this allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // nested stacks (below or above based on the sign of direction).
      // Returns the largest y coordinate filled.
      function renderStacks(depth, xscale, x, y, places, direction) {
        // Example: suppose we are drawing the following stacks:
        //   a->b->c
        //   a->b->d
        //   a->e->f
        // After rendering a, we will call renderStacks, with places pointing to
        // the preceding stacks.
        //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.vss"/>
        <glob pattern="*.vsw"/>
        <sub-class-of type="application/x-tika-msoffice"/>
      </mime-type>
    
      <mime-type type="application/vnd.ms-visio.drawing">
        <_comment>Office Open XML Visio Drawing (macro-free)</_comment>
        <glob pattern="*.vsdx"/>
        <sub-class-of type="application/x-tika-visio-ooxml"/>
      </mime-type>
      <mime-type type="application/vnd.ms-visio.template">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. src/image/draw/draw_test.go

    							continue loop
    						}
    					}
    				}
    			}
    		}
    	}
    }
    
    // TestNonZeroSrcPt checks drawing with a non-zero src point parameter.
    func TestNonZeroSrcPt(t *testing.T) {
    	a := image.NewRGBA(image.Rect(0, 0, 1, 1))
    	b := image.NewRGBA(image.Rect(0, 0, 2, 2))
    	b.Set(0, 0, color.RGBA{0, 0, 0, 5})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. src/image/draw/draw.go

    }
    
    // Drawer contains the [Draw] method.
    type Drawer interface {
    	// Draw aligns r.Min in dst with sp in src and then replaces the
    	// rectangle r in dst with the result of drawing src on dst.
    	Draw(dst Image, r image.Rectangle, src image.Image, sp image.Point)
    }
    
    // FloydSteinberg is a [Drawer] that is the [Src] [Op] with Floyd-Steinberg error
    // diffusion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top