Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 272 for HEIGHT (0.08 sec)

  1. scripts/playwright/separate_openapi_schemas/image03.py

    from playwright.sync_api import Playwright, sync_playwright
    
    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("GET/items/Read Items").click()
        page.get_by_role("tab", name="Schema").click()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 892 bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/basn3p04-31i.sng

    #SNG: from basn3p04-31i.png
    IHDR {
        width: 31; height: 31; bitdepth: 4;
        using color palette;
    }
    gAMA {1.0000}
    PLTE {
        ( 34,  0,255)     # rgb = (0x22,0x00,0xff)
        (  0,255,255)     # rgb = (0x00,0xff,0xff)
        (136,  0,255)     # rgb = (0x88,0x00,0xff)
        ( 34,255,  0)     # rgb = (0x22,0xff,0x00)
        (  0,153,255)     # rgb = (0x00,0x99,0xff)
        (255,102,  0)     # rgb = (0xff,0x66,0x00)
        (221,  0,255)     # rgb = (0xdd,0x00,0xff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  3. src/image/png/testdata/pngsuite/basn0g01-30.sng

    #SNG: from basn0g01-30.png
    IHDR {
        width: 30; height: 30; bitdepth: 8;
        using grayscale;
    }
    gAMA {1.0000}
    IMAGE {
        pixels hex
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00
    ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000
    ffffffff0000ffffffffffff0000ffffffffffffffffffffffffff000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.9K bytes
    - Viewed (0)
  4. docs/de/docs/newsletter.md

    # FastAPI und Freunde Newsletter
    
    <iframe data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://xr4n4.mjt.lu/wgt/xr4n4/hj5/form?c=40a44fa4" width="100%" style="height: 0;"></iframe>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 18 12:18:33 UTC 2024
    - 322 bytes
    - Viewed (0)
  5. docs/en/docs/newsletter.md

    # FastAPI and friends newsletter
    
    <iframe data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://xr4n4.mjt.lu/wgt/xr4n4/hj5/form?c=40a44fa4" width="100%" style="height: 0;"></iframe>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 26 16:02:34 UTC 2023
    - 322 bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaCompilationFixture.groovy

                '''
                    /**
                     * A person.
                     * Can live in a house.
                     * Has a name, age and a height.
                     */
                    class Person(val name: String, val age: Int, val height: Int)'''.stripIndent())
            classDependingOnBasicClassSource = new ScalaClass(
                'House',
                'class House(val owner: Person)',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/term/term_plan9.go

    }
    
    func restore(fd int, state *State) error {
    	return fmt.Errorf("terminal: Restore not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    
    func getSize(fd int) (width, height int, err error) {
    	return 0, 0, fmt.Errorf("terminal: GetSize not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    
    func readPassword(fd int) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/image/decode_example_test.go

    	reader := base64.NewDecoder(base64.StdEncoding, strings.NewReader(data))
    	config, format, err := image.DecodeConfig(reader)
    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Println("Width:", config.Width, "Height:", config.Height, "Format:", format)
    }
    
    func Example() {
    	// Decode the JPEG data. If reading from file, create a reader with
    	//
    	// reader, err := os.Open("testdata/video-001.q50.420.jpeg")
    	// if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 29 03:16:17 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            data = "<img src=\"http://example/foo.jpg\" width=\"x\" height=\"x\">";
            assertNull(transformer.getThumbnailUrl(responseData, getDocument(data)));
    
            data = "<img src=\"http://example/foo.jpg\" width=\"10\" height=\"100\">";
            assertNull(transformer.getThumbnailUrl(responseData, getDocument(data)));
    
            data = "<img src=\"http://example/foo.jpg\" width=\"100\" height=\"10\">";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. scripts/playwright/separate_openapi_schemas/image01.py

    from playwright.sync_api import Playwright, sync_playwright
    
    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("POST/items/Create Item").click()
        page.get_by_role("tab", name="Schema").first.click()
        page.screenshot(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 819 bytes
    - Viewed (0)
Back to top