Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for auth (0.33 sec)

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

    		if !v.Addrtaken() {
    			s.Fatalf("KeepAlive variable %v must have Addrtaken set", v)
    		}
    		switch v.Class {
    		case ir.PAUTO, ir.PPARAM, ir.PPARAMOUT:
    		default:
    			s.Fatalf("KeepAlive variable %v must be Auto or Arg", v)
    		}
    		s.vars[memVar] = s.newValue1A(ssa.OpVarLive, types.TypeMem, v, s.mem())
    	}
    
    	// Finish block for defers
    	if k == callDefer || k == callDeferStack {
    		b := s.endBlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	-buildmode mode
    //		build mode to use. See 'go help buildmode' for more.
    //	-buildvcs
    //		Whether to stamp binaries with version control information
    //		("true", "false", or "auto"). By default ("auto"), version control
    //		information is stamped into a binary if the main package, the main module
    //		containing it, and the current directory are all in the same repository.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    var (
    	// RootMode determines whether a module root is needed.
    	RootMode Root
    
    	// ForceUseModules may be set to force modules to be enabled when
    	// GO111MODULE=auto or to report an error when GO111MODULE=off.
    	ForceUseModules bool
    
    	allowMissingModuleImports bool
    
    	// ExplicitWriteGoMod prevents LoadPackages, ListModules, and other functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    		By default or when GOWORK is "auto", the go command searches for a
    		file named go.work in the current directory and then containing directories
    		until one is found. If a valid go.work file is found, the modules
    		specified will collectively be used as the main modules. If GOWORK
    		is "off", or a go.work file is not found in "auto" mode, workspace
    		mode is disabled.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. doc/README.md

    flagged as a TODO by the automated tooling. That is true even for proposals that add API.
    
    Use the following forms in your markdown:
    
    	[http.Request]                     # symbol documentation; auto-linked as in Go doc strings
    	[Request]                          # short form, for symbols in the package being documented
    	[net/http]                         # package link
    	[#12345](/issue/12345)             # GitHub issues
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/func.go

    }
    
    // NewLocal returns a new anonymous local variable of the given type.
    func (f *Func) NewLocal(pos src.XPos, typ *types.Type) *ir.Name {
    	nn := typecheck.TempAt(pos, f.fe.Func(), typ) // Note: adds new auto to fn.Dcl list
    	nn.SetNonMergeable(true)
    	return nn
    }
    
    // IsMergeCandidate returns true if variable n could participate in
    // stack slot merging. For now we're restricting the set to things to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/liveness/plive.go

    				}
    				typebits.SetNoCheck(node.Type(), node.FrameOffset(), args)
    				break
    			}
    			fallthrough // PPARAMOUT in registers acts memory-allocates like an AUTO
    		case ir.PAUTO:
    			if checkForDuplicateSlots {
    				if prev, ok := slotsSeen[node.FrameOffset()]; ok {
    					base.FatalfAt(node.Pos(), "two vars live at pointerMap generation: %q and %q", prev.Sym().Name, node.Sym().Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top