Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Delete (0.12 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		ps.startScope('(')
    		ps.print(c.To)
    		ps.endScope(')')
    	} else {
    		ps.print(u.Op)
    	}
    
    	if !u.Suffix {
    		isDelete := op != nil && (op.Name == "delete " || op.Name == "delete[] ")
    		if op != nil && op.Name == "::" {
    			// Don't use parentheses after ::.
    			ps.print(expr)
    		} else if u.SizeofType {
    			// Always use parentheses for sizeof argument.
    			ps.startScope('(')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // LoadImportWithFlags loads the package with the given import path and
    // sets tool flags on that package. This function is useful loading implicit
    // dependencies (like sync/atomic for coverage).
    // TODO(jayconrod): delete this function and set flags automatically
    // in LoadImport instead.
    func LoadImportWithFlags(path, srcDir string, parent *Package, stk *ImportStack, importPos []token.Position, mode int) (*Package, *PackageError) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // Setting the GOCACHE environment variable overrides this default,
    // and running 'go env GOCACHE' prints the current cache directory.
    //
    // The go command periodically deletes cached data that has not been
    // used recently. Running 'go clean -cache' deletes all cached data.
    //
    // The build cache correctly accounts for changes to Go source files,
    // compilers, compiler options, and so on: cleaning the cache explicitly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    						pp.From.Offset = 0
    						pp.From.Index = REG_NONE
    						ab.rexflag |= Pw
    						ab.Put1(0x8B)
    						ab.asmand(ctxt, cursym, p, &pp.From, &p.To)
    
    					case objabi.Hsolaris: // TODO(rsc): Delete Hsolaris from list. Should not use this code. See progedit in obj6.c.
    						// TLS base is 0(FS).
    						pp.From = p.From
    
    						pp.From.Type = obj.TYPE_MEM
    						pp.From.Name = obj.NAME_NONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    //
    // To create a *ProcThreadAttributeList, use NewProcThreadAttributeList, update
    // it with ProcThreadAttributeListContainer.Update, free its memory using
    // ProcThreadAttributeListContainer.Delete, and access the list itself using
    // ProcThreadAttributeListContainer.List.
    type ProcThreadAttributeList struct{}
    
    type ProcThreadAttributeListContainer struct {
    	data     *ProcThreadAttributeList
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    <p>
    The built-in function <code>delete</code> removes the element with key
    <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The
    type of <code>k</code> must be <a href="#Assignability">assignable</a>
    to the key type of <code>m</code>.
    </p>
    
    <pre class="grammar">
    delete(m, k)  // remove element m[k] from map m
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	// Update the binary with the final build ID.
    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		data = append(data, 0)
    	}
    	s.SetData(data)
    	s.SetSize(int64(len(data)))
    
    	// Add reference to go:buildinfo from the rodata section,
    	// so that external linking with -Wl,--gc-sections does not
    	// delete the build info.
    	sr := ldr.CreateSymForUpdate("go:buildinfo.ref", 0)
    	sr.SetType(sym.SRODATA)
    	sr.SetAlign(int32(ctxt.Arch.PtrSize))
    	sr.AddAddr(ctxt.Arch, s.Sym())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top