Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for handlers (0.64 sec)

  1. src/cmd/dist/build.go

    }
    
    // find reports the first index of p in l[0:n], or else -1.
    func find(p string, l []string) int {
    	for i, s := range l {
    		if p == s {
    			return i
    		}
    	}
    	return -1
    }
    
    // xinit handles initialization of the various global state, like goroot and goarch.
    func xinit() {
    	b := os.Getenv("GOROOT")
    	if b == "" {
    		fatalf("$GOROOT must be set")
    	}
    	goroot = filepath.Clean(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		t.Fatal(err)
    	}
    
    	for ident, obj := range info.Defs {
    		if obj == nil {
    			// only package names and implicit vars have a nil object
    			// (in this test we only need to handle the package name)
    			if ident.Value != "p" {
    				t.Errorf("%v has nil object", ident)
    			}
    			continue
    		}
    
    		// struct fields, type-associated and interface methods
    		// have no parent scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    func (c *typeConv) badStructPointerTypedef(name string, dt *dwarf.StructType) bool {
    	// Windows handle types can all potentially contain non-pointers.
    	// badVoidPointerTypedef handles the "void *" HANDLE type, but other
    	// handles are defined as
    	//
    	// struct <name>__{int unused;}; typedef struct <name>__ *name;
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		// can be set to zero.
    
    		// This same problem can happen with gostrings since the final offset is not
    		// known yet, but could be unaligned after the relocation is resolved.
    		// So gostrings are handled the same way.
    
    		// This allows the MOVDload and MOVWload to be generated in more cases and
    		// eliminates some offset and alignment checking in the rules file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    variables are unchanged. A cached test result is treated as executing
    in no time at all, so a successful package test result will be cached and
    reused regardless of -timeout setting.
    
    In addition to the build flags, the flags handled by 'go test' itself are:
    
    	-args
    	    Pass the remainder of the command line (everything after -args)
    	    to the test binary, uninterpreted and unchanged.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	setSlot := func(slot SlotID, loc VarLoc) {
    		changed = true
    		state.changedVars.add(ID(state.slotVars[slot]))
    		state.changedSlots.add(ID(slot))
    		state.currentState.slots[slot] = loc
    	}
    
    	// Handle any register clobbering. Call operations, for example,
    	// clobber all registers even though they don't explicitly write to
    	// them.
    	clobbers := uint64(opcodeTable[v.Op].reg.clobbers)
    	for {
    		if clobbers == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    	// 'go get' no longer builds or installs packages, so there's nothing to do
    	// if there's no go.mod file.
    	// TODO(#40775): make modload.Init return ErrNoModRoot instead of exiting.
    	// We could handle that here by printing a different message.
    	modload.Init()
    	if !modload.HasModRoot() {
    		base.Fatalf("go: go.mod file not found in current directory or any parent directory.\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    	p.top = true
    	p.file = file
    	p.errh = errh
    	p.mode = mode
    	p.pragh = pragh
    	p.scanner.init(
    		r,
    		// Error and directive handler for scanner.
    		// Because the (line, col) positions passed to the
    		// handler is always at or after the current reading
    		// position, it is safe to use the most recent position
    		// base to compute the corresponding Pos value.
    		func(line, col uint, msg string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    			}
    			break
    		}
    		// Update operand types to the default type rather than the target
    		// (interface) type: values must have concrete dynamic types.
    		// Untyped nil was handled upfront.
    		if !u.Empty() {
    			return nil, nil, InvalidUntypedConversion // cannot assign untyped values to non-empty interfaces
    		}
    		return Default(x.typ), nil, 0 // default type for nil is nil
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/type.go

    		return CMPeq
    
    	case TMAP:
    		if c := t.Key().cmp(x.Key()); c != CMPeq {
    			return c
    		}
    		return t.Elem().cmp(x.Elem())
    
    	case TPTR, TSLICE:
    		// No special cases for these, they are handled
    		// by the general code after the switch.
    
    	case TSTRUCT:
    		if t.StructType().Map == nil {
    			if x.StructType().Map != nil {
    				return CMPlt // nil < non-nil
    			}
    			// to the fallthrough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top