Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,138 for blink (0.11 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Link.java

            }
            if (!getClass().equals(o.getClass())) {
                return false;
            }
            Link link = (Link) o;
            return Objects.equal(name, link.name)
                && Objects.equal(type, link.type)
                && Objects.equal(location, link.location)
                && Objects.equal(locationUri, link.locationUri);
        }
    
        @Override
        public int hashCode() {
            int result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/go/doc/testdata/blank.1.golden

    // Package blank is a go/doc test for the handling of _. See issue ...
    PACKAGE blank
    
    IMPORTPATH
    	testdata/blank
    
    IMPORTS
    	os
    
    FILENAMES
    	testdata/blank.go
    
    CONSTANTS
    	// T constants counting from unexported constants. 
    	const (
    		tweedledee	T	= iota
    		tweedledum
    		C1
    		C2
    		alice
    		C3
    		redQueen	int	= iota
    		C4
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1001 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/base/link.go

    // do _that_ weird thing" (per rsc). See also #4257.
    var ReservedImports = map[string]bool{
    	"go":   true,
    	"type": true,
    }
    
    var Ctxt *obj.Link
    
    // TODO(mdempsky): These should probably be obj.Link methods.
    
    // PkgLinksym returns the linker symbol for name within the given
    // package prefix. For user packages, prefix should be the package
    // path encoded with objabi.PathToPrefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/go/doc/testdata/blank.0.golden

    // Package blank is a go/doc test for the handling of _. See issue ...
    PACKAGE blank
    
    IMPORTPATH
    	testdata/blank
    
    IMPORTS
    	os
    
    FILENAMES
    	testdata/blank.go
    
    CONSTANTS
    	// T constants counting from unexported constants. 
    	const (
    		C1	T
    		C2
    	
    		C3
    	
    		C4	int
    	)
    
    	// Constants with a single type that is not propagated. 
    	const (
    		Default		= 0644
    		Useless		= 0312
    		WideOpen	= 0777
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 01:12:26 UTC 2017
    - 751 bytes
    - Viewed (0)
Back to top