Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for first (0.06 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    	blockChanged := !locs.everProcessed // the first time it always changes.
    	updating := locs.everProcessed
    
    	// For the first merge, exclude predecessors that have not been seen yet.
    	// I.e., backedges.
    	for _, pred := range b.Preds {
    		if bl := blockLocs[pred.b.ID]; bl != nil && bl.everProcessed {
    			// crucially, a self-edge has bl != nil, but bl.everProcessed is false the first time.
    			preds = append(preds, pred.b)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    // The first name must be provided.
    func (p *parser) nameList(first *Name) []*Name {
    	if trace {
    		defer p.trace("nameList")()
    	}
    
    	if debug && first == nil {
    		panic("first name not provided")
    	}
    
    	l := []*Name{first}
    	for p.got(_Comma) {
    		l = append(l, p.name())
    	}
    
    	return l
    }
    
    // The first name may be provided, or nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    ((EQ|LE|GE|ULE|UGE) (FlagEQ) yes no)     => (First yes no)
    ((NE|LT|GT|ULT|UGT) (FlagEQ) yes no)     => (First no yes)
    ((NE|LT|LE|ULT|ULE) (FlagLT_ULT) yes no) => (First yes no)
    ((EQ|GT|GE|UGT|UGE) (FlagLT_ULT) yes no) => (First no yes)
    ((NE|LT|LE|UGT|UGE) (FlagLT_UGT) yes no) => (First yes no)
    ((EQ|GT|GE|ULT|ULE) (FlagLT_UGT) yes no) => (First no yes)
    ((NE|GT|GE|ULT|ULE) (FlagGT_ULT) yes no) => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    }
    
    // Summary returns a string that describes only the first and last modules in
    // the conflict path.
    func (c Conflict) Summary() string {
    	if len(c.Path) == 0 {
    		return "(internal error: invalid Conflict struct)"
    	}
    	first := c.Path[0]
    	last := c.Path[len(c.Path)-1]
    	if len(c.Path) == 1 {
    		if c.Err != nil {
    			return fmt.Sprintf("%s: %v", first, c.UnwrapModuleError())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	{"a\xe0\x80cd", not(isValidRune), 1, 2},
    }
    
    func TestIndexFunc(t *testing.T) {
    	for _, tc := range indexFuncTests {
    		first := IndexFunc([]byte(tc.in), tc.f.f)
    		if first != tc.first {
    			t.Errorf("IndexFunc(%q, %s) = %d; want %d", tc.in, tc.f.name, first, tc.first)
    		}
    		last := LastIndexFunc([]byte(tc.in), tc.f.f)
    		if last != tc.last {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (EQ (FlagEQ) yes no) => (First yes no)
    (EQ (FlagLT) yes no) => (First no yes)
    (EQ (FlagGT) yes no) => (First no yes)
    
    (NE (FlagEQ) yes no) => (First no yes)
    (NE (FlagLT) yes no) => (First yes no)
    (NE (FlagGT) yes no) => (First yes no)
    
    (LT (FlagEQ) yes no) => (First no yes)
    (LT (FlagLT) yes no) => (First yes no)
    (LT (FlagGT) yes no) => (First no yes)
    
    (LE (FlagEQ) yes no) => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    The go command places $GOROOT/bin at the beginning of $PATH
    in the test's environment, so that tests that execute
    'go' commands use the same 'go' as the parent 'go test' command.
    
    Go test runs in two different modes:
    
    The first, called local directory mode, occurs when go test is
    invoked with no package arguments (for example, 'go test' or 'go
    test -v'). In this mode, go test compiles the package sources and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    		}
    		if ctxt.Arch.Family == sys.RISCV64 {
    			ehdr.Flags = 0x4 /* RISCV Float ABI Double */
    		}
    		elf64 = true
    
    		ehdr.Phoff = ELF64HDRSIZE      /* Must be ELF64HDRSIZE: first PHdr must follow ELF header */
    		ehdr.Shoff = ELF64HDRSIZE      /* Will move as we add PHeaders */
    		ehdr.Ehsize = ELF64HDRSIZE     /* Must be ELF64HDRSIZE */
    		ehdr.Phentsize = ELF64PHDRSIZE /* Must be ELF64PHDRSIZE */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	wildcardNones []*query          // wildcard "@none" queries
    
    	// resolvedVersion maps each module path to the version of that module that
    	// must be selected in the final build list, along with the first query
    	// that resolved the module to that version (the “reason”).
    	resolvedVersion map[string]versionReason
    
    	buildList        []module.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf.go

    )
    
    var gdbscript string
    
    // dwarfSecInfo holds information about a DWARF output section,
    // specifically a section symbol and a list of symbols contained in
    // that section. On the syms list, the first symbol will always be the
    // section symbol, then any remaining symbols (if any) will be
    // sub-symbols in that section. Note that for some sections (eg:
    // .debug_abbrev), the section symbol is all there is (all content is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top