Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,025 for blink (0.1 sec)

  1. docs/en/docs/css/termynal.css

        content: attr(data-ty-cursor);
        font-family: monospace;
        margin-left: 0.5em;
        -webkit-animation: blink 1s infinite;
                animation: blink 1s infinite;
    }
    
    
    /* Cursor animation */
    
    @-webkit-keyframes blink {
        50% {
            opacity: 0;
        }
    }
    
    @keyframes blink {
        50% {
            opacity: 0;
        }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/net/http/roundtrip_js.go

    		}
    	}
    	opt.Set("headers", headers)
    
    	if req.Body != nil {
    		// TODO(johanbrandhorst): Stream request body when possible.
    		// See https://bugs.chromium.org/p/chromium/issues/detail?id=688906 for Blink issue.
    		// See https://bugzilla.mozilla.org/show_bug.cgi?id=1387483 for Firefox issue.
    		// See https://github.com/web-platform-tests/wpt/issues/7693 for WHATWG tests issue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    let faviconData=tr.ui.b.FaviconsByHue[hue];if(faviconData===undefined){faviconData=tr.ui.b.FaviconsByHue.blue;}
    let link=Polymer.dom(document.head).querySelector('link[rel="shortcut icon"]');if(!link){link=document.createElement('link');link.rel='shortcut icon';Polymer.dom(document.head).appendChild(link);}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type NTString struct {
    	Length        uint16
    	MaximumLength uint16
    	Buffer        *byte
    }
    
    type LIST_ENTRY struct {
    	Flink *LIST_ENTRY
    	Blink *LIST_ENTRY
    }
    
    type RUNTIME_FUNCTION struct {
    	BeginAddress uint32
    	EndAddress   uint32
    	UnwindData   uint32
    }
    
    type LDR_DATA_TABLE_ENTRY struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/main/webapp/images/blank.png

    blank.png...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 22 18:08:59 UTC 2016
    - 506 bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/blank.txt

    -- input --
    	$
    	Blank line at start and end.
    	$
    -- gofmt --
    Blank line at start and end.
    -- text --
    Blank line at start and end.
    -- markdown --
    Blank line at start and end.
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:40 UTC 2022
    - 216 bytes
    - Viewed (0)
  7. src/go/doc/testdata/blank.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package blank is a go/doc test for the handling of _.
    // See issue 5397.
    package blank
    
    import "os"
    
    type T int
    
    // T constants counting from a blank constant.
    const (
    	_ T = iota
    	T1
    	T2
    )
    
    // T constants counting from unexported constants.
    const (
    	tweedledee T = iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/lif/link.go

    // logical network interfaces share the same logical data link.
    type Link struct {
    	Name  string // name, equivalent to IP interface name
    	Index int    // index, equivalent to IP interface index
    	Type  int    // type
    	Flags int    // flags
    	MTU   int    // maximum transmission unit, basically link MTU but may differ between IP address families
    	Addr  []byte // address
    }
    
    func (ll *Link) fetch(s uintptr) {
    	var lifr lifreq
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. test/blank.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test behavior of the blank identifier (_).
    
    package main
    
    import (
    	"os"
    	"unsafe"
    )
    
    import _ "fmt"
    
    var call string
    
    type T struct {
    	_, _, _ int
    }
    
    func (T) _() {
    }
    
    func (T) _() {
    }
    
    type U struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 08 18:36:20 UTC 2013
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/link.go

    		return nil, 0, false
    	}
    	j++
    	for j < len(s) && isURL(s[j]) {
    		j++
    	}
    	if j >= len(s) || s[j] != '>' {
    		return nil, 0, false
    	}
    	link := s[i+1 : j]
    	// link = mdUnescaper.Replace(link)
    	return &AutoLink{link, link}, j + 1, true
    }
    
    func parseAutoLinkEmail(s string, i int) (Inline, int, bool) {
    	// CommonMark 0.30:
    	//
    	//	An email address, for these purposes, is anything that matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
Back to top