Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for webpage (0.16 sec)

  1. samples/websockets/README.md

    To see the websocket in action see the instructions in the _REST API examples_ section of the demo app webpage for updating the server-side data and getting the updated data through the open websocket to the table in the webpage (without refreshing).
    
    ## Cleanup
    
    ```command
    kubectl delete -f samples/websockets/route.yaml
    kubectl delete -f samples/websockets/app.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. src/html/template/example_test.go

    		{{range .Items}}<div>{{ . }}</div>{{else}}<div><strong>no rows</strong></div>{{end}}
    	</body>
    </html>`
    
    	check := func(err error) {
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    	t, err := template.New("webpage").Parse(tpl)
    	check(err)
    
    	data := struct {
    		Title string
    		Items []string
    	}{
    		Title: "My page",
    		Items: []string{
    			"My photos",
    			"My blog",
    		},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.14.md

    - Updated kubelet CLI summary documentation and generated webpage ([#73256](https://github.com/kubernetes/kubernetes/pull/73256), [@deitch](https://github.com/deitch))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  8. 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)
  9. src/image/color/palette/gen.go

    			}
    		}
    	}
    	fmt.Fprintln(w, "// WebSafe is a 216-color palette that was popularized by early versions")
    	fmt.Fprintln(w, "// of Netscape Navigator. It is also known as the Netscape Color Cube.")
    	fmt.Fprintln(w, "//")
    	fmt.Fprintln(w, "// See https://en.wikipedia.org/wiki/Web_colors#Web-safe_colors for details.")
    	fmt.Fprintln(w, "var WebSafe = []color.Color{")
    	for _, line := range lines {
    		fmt.Fprintln(w, line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. 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)
Back to top