Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,025 for blink (0.04 sec)

  1. src/cmd/vendor/rsc.io/markdown/parse.go

    		// _ = b
    	} else {
    		p.root = blk.(*Document)
    	}
    	return blk
    }
    
    func (p *parseState) link(label string) *Link {
    	return p.links[label]
    }
    
    func (p *parseState) defineLink(label string, link *Link) {
    	if p.links == nil {
    		p.links = make(map[string]*Link)
    	}
    	p.links[label] = link
    }
    
    type line struct {
    	spaces int
    	i      int
    	tab    int
    	text   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. docs/pt/docs/python-types.md

    já passou por todo o tutorial e voltou para ver mais sobre os tipos, um bom recurso é <a href = "https://mypy.readthedocs.io/en/latest/cheat_sheet_py3.html" class = "external-link "target =" _ blank "> a "cheat sheet" do `mypy` </a>....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/os/user/lookup_unix.go

    				break
    			}
    		}
    
    		// There's no spec for /etc/passwd or /etc/group, but we try to follow
    		// the same rules as the glibc parser, which allows comments and blank
    		// space at the beginning of a line.
    		wholeLine = bytes.TrimSpace(wholeLine)
    		if len(wholeLine) == 0 || wholeLine[0] == '#' {
    			continue
    		}
    		v, err = fn(wholeLine)
    		if v != nil || err != nil {
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/syscall/ztypes_freebsd_arm.go

    	S_IXUSR  = 0x40
    	S_IRWXG  = 0x38
    	S_IRWXO  = 0x7
    )
    
    const (
    	_statfsVersion = 0x20140518
    	_dirblksiz     = 0x400
    )
    
    type Stat_t struct {
    	Dev           uint64
    	Ino           uint64
    	Nlink         uint64
    	Mode          uint16
    	Padding0      int16
    	Uid           uint32
    	Gid           uint32
    	Padding1      int32
    	Rdev          uint64
    	Atimespec     Timespec
    	Mtimespec     Timespec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  5. src/syscall/ztypes_freebsd_arm64.go

    	S_IXUSR  = 0x40
    	S_IRWXG  = 0x38
    	S_IRWXO  = 0x7
    )
    
    const (
    	_statfsVersion = 0x20140518
    	_dirblksiz     = 0x400
    )
    
    type Stat_t struct {
    	Dev           uint64
    	Ino           uint64
    	Nlink         uint64
    	Mode          uint16
    	Padding0      int16
    	Uid           uint32
    	Gid           uint32
    	Padding1      int32
    	Rdev          uint64
    	Atimespec     Timespec
    	Mtimespec     Timespec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompactHashing.java

            int newNext = getNext(entry, mask);
            if (lastEntryIndex == -1) {
              // we need to update the root link from table[]
              tableSet(table, tableIndex, newNext);
            } else {
              // we need to update the link from the chain
              entries[lastEntryIndex] = maskCombine(entries[lastEntryIndex], newNext, mask);
            }
    
            return entryIndex;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. src/os/os_windows_test.go

    		}
    
    		fi1, err := os.Stat(link)
    		if err != nil {
    			t.Errorf("failed to stat link %v: %v", link, err)
    			continue
    		}
    		if tp := fi1.Mode().Type(); tp != fs.ModeDir {
    			t.Errorf("Stat(%q) is type %v; want %v", link, tp, fs.ModeDir)
    			continue
    		}
    		if fi1.Name() != filepath.Base(link) {
    			t.Errorf("Stat(%q).Name() = %q, want %q", link, fi1.Name(), filepath.Base(link))
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. src/encoding/csv/reader.go

    //
    //	field1,field2,field3
    //
    // White space is considered part of a field.
    //
    // Carriage returns before newline characters are silently removed.
    //
    // Blank lines are ignored. A line with only whitespace characters (excluding
    // the ending newline character) is not considered a blank line.
    //
    // Fields which start and stop with the quote character " are called
    // quoted-fields. The beginning and ending quote are not part of the
    // field.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/go/doc/comment/testdata/list6.txt

    -- input --
    Text.
     - List immediately after.
     - Another.
    
    More text.
    
     - List after blank line.
     - Another.
    
    Even more text.
     - List immediately after.
    
     - Blank line between items.
    
    Yet more text.
    
     - Another list after blank line.
    
     - Blank line between items.
    
    Still more text.
     - One list item.
    
       Multiple paragraphs.
    -- dump --
    Doc
    	Paragraph
    		Plain "Text."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. pkg/auth/authorizer/abac/abac.go

    	decoder := abac.Codecs.UniversalDecoder()
    
    	i := 0
    	unversionedLines := 0
    	for scanner.Scan() {
    		i++
    		p := &abac.Policy{}
    		b := scanner.Bytes()
    
    		// skip comment lines and blank lines
    		trimmed := strings.TrimSpace(string(b))
    		if len(trimmed) == 0 || strings.HasPrefix(trimmed, "#") {
    			continue
    		}
    
    		decodedObj, _, err := decoder.Decode(b, nil, nil)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 03:11:30 UTC 2021
    - 7.4K bytes
    - Viewed (0)
Back to top