Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 125 for DELETE (0.14 sec)

  1. src/runtime/runtime2.go

    	isExtraInC    bool          // m is an extra m that is not executing Go code
    	isExtraInSig  bool          // m is an extra m in a signal handler
    	freeWait      atomic.Uint32 // Whether it is safe to free g0 and delete m (one of freeMRef, freeMStack, freeMWait)
    	needextram    bool
    	traceback     uint8
    	ncgocall      uint64        // number of cgo calls in total
    	ncgo          int32         // number of cgo calls currently in progress
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		}
    	}
    
    	// Remove functions only used as expressions, so their respective
    	// bridge functions are not generated.
    	for name, used := range functions {
    		if !used {
    			delete(f.Name, name)
    		}
    	}
    }
    
    // rewriteName returns the expression used to rewrite a reference.
    // If addPosition is true, add position info in the ident name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    		// import ambiguity.
    		//
    		// For example, suppose a developer rewrites imports from example.com/m to
    		// example.com/m/v2, then runs 'go mod tidy'. Tidy may delete the
    		// requirement on example.com/m if there is no other transitive requirement
    		// on it. However, if example.com/m were downgraded to a version not in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    		old.typ = under(typ).(*Basic)
    		check.untyped[x] = old
    		return
    	}
    
    	// Otherwise we have the final (typed or untyped type).
    	// Remove it from the map of yet untyped expressions.
    	delete(check.untyped, x)
    
    	if old.isLhs {
    		// If x is the lhs of a shift, its final type must be integer.
    		// We already know from the shift check that it is representable
    		// as an integer if it is a constant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. 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)
  6. doc/go_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
    value <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: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check.go

    	alias.typ = Typ[Invalid]
    }
    
    // validAlias records that alias has the valid type typ (possibly Typ[Invalid]).
    func (check *Checker) validAlias(alias *TypeName, typ Type) {
    	assert(!check.conf.EnableAlias)
    	delete(check.brokenAliases, alias)
    	alias.typ = typ
    }
    
    // isBrokenAlias reports whether alias doesn't have a determined type yet.
    func (check *Checker) isBrokenAlias(alias *TypeName) bool {
    	assert(!check.conf.EnableAlias)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	}
    }
    
    func TestMapIterDelete0(t *testing.T) {
    	// Delete all elements before first iteration.
    	m := map[string]int{"one": 1, "two": 2, "three": 3}
    	iter := ValueOf(m).MapRange()
    	delete(m, "one")
    	delete(m, "two")
    	delete(m, "three")
    	if got, want := iterateToString(iter), `[]`; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	if b == nil || &b[0] != &data[0] {
    		return EINVAL
    	}
    
    	// Unmap the memory and update m.
    	if errno := m.munmap(uintptr(unsafe.Pointer(&b[0])), uintptr(len(b))); errno != nil {
    		return errno
    	}
    	delete(m.active, p)
    	return nil
    }
    
    func Read(fd int, p []byte) (n int, err error) {
    	n, err = read(fd, p)
    	if raceenabled {
    		if n > 0 {
    			raceWriteRange(unsafe.Pointer(&p[0]), n)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top