Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for webpage (0.13 sec)

  1. pkg/ctrlz/assets/templates/layouts/base.html

    <!DOCTYPE html>
    <html lang="en" itemscope itemtype="https://schema.org/WebPage">
        <head>
            <meta charset="utf-8">
            <meta http-equiv="X-UA-Compatible" content="IE=edge">
            <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
            <meta name="theme-color" content="#466BB0"/>
            <meta name="title" content="ControlZ / {{template "title" .}}">
    
            <title>ControlZ / {{template "title" .}}</title>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pkg/dns/client/dns_test.go

    			host:                    "details.ns2.",
    			expectResolutionFailure: dns.RcodeNameError, // on home machines, the ISP may resolve to some generic webpage. So this test may fail on laptops
    		},
    		{
    			name:     "success: TypeA query returns A records only",
    			host:     "dual.localhost.",
    			expected: a("dual.localhost.", []netip.Addr{netip.MustParseAddr("2.2.2.2")}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InternetDomainName.java

     * <p>One common use of this class is to determine whether a given string is likely to represent an
     * addressable domain on the web -- that is, for a candidate string {@code "xxx"}, might browsing to
     * {@code "http://xxx/"} result in a webpage being displayed? In the past, this test was frequently
     * done by determining whether the domain ended with a {@linkplain #isPublicSuffix() public suffix}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

     * <p>One common use of this class is to determine whether a given string is likely to represent an
     * addressable domain on the web -- that is, for a candidate string {@code "xxx"}, might browsing to
     * {@code "http://xxx/"} result in a webpage being displayed? In the past, this test was frequently
     * done by determining whether the domain ended with a {@linkplain #isPublicSuffix() public suffix}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. kotlin-js-store/yarn.lock

        "@webpack-cli/serve" "^2.0.3"
        colorette "^2.0.14"
        commander "^10.0.1"
        cross-spawn "^7.0.3"
        envinfo "^7.7.3"
        fastest-levenshtein "^1.0.12"
        import-local "^3.0.2"
        interpret "^3.1.1"
        rechoir "^0.8.0"
        webpack-merge "^5.7.3"
    
    webpack-merge@^4.1.5:
      version "4.2.2"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

                try (Browser browser = playwright.webkit().launch()) {
                    try (BrowserContext context = browser.newContext()) {
                        try (Page page = context.newPage()) {
                            page.onPageError(onPageError)
                            page.navigate(configurationCacheReport.toURI().toString())
                            page.innerText(selector)
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/image/color/palette/palette.go

    	color.RGBA{0xff, 0xff, 0xaa, 0xff},
    	color.RGBA{0xff, 0xff, 0xff, 0xff},
    }
    
    // WebSafe is a 216-color palette that was popularized by early versions
    // of Netscape Navigator. It is also known as the Netscape Color Cube.
    //
    // See https://en.wikipedia.org/wiki/Web_colors#Web-safe_colors for details.
    var WebSafe = []color.Color{
    	color.RGBA{0x00, 0x00, 0x00, 0xff},
    	color.RGBA{0x00, 0x00, 0x33, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. 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++ {
    		hugeGIF.Image[i] = img
    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. src/image/gif/writer_test.go

    	// color.Palette is a concrete (slice) type.
    	globalColorModel, backgroundIndex := color.Model(color.Palette(nil)), uint8(0)
    	if useGlobalColorModel {
    		globalColorModel, backgroundIndex = color.Palette(palette.WebSafe), uint8(1)
    	}
    	if go1Dot5Fields {
    		g0.Disposal = make([]byte, len(g0.Image))
    		for i := range g0.Disposal {
    			g0.Disposal[i] = DisposalNone
    		}
    		g0.Config = image.Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    *.vultrobjects.com
    
    // Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
    // Submitted by Masayuki Note <******@****.***>
    wafflecell.com
    
    // WebHare bv: https://www.webhare.com/
    // Submitted by Arnold Hendriks <info@webhare.com>
    *.webhare.dev
    
    // WebHotelier Technologies Ltd: https://www.webhotelier.net/
    // Submitted by Apostolos Tsakpinis <******@****.***>
    reserve-online.net
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top