Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for DELETE (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/compile/internal/types2/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
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		got := [2]string{
    			sel.String(),
    			fmt.Sprintf("%s%v", direct, sel.Index()),
    		}
    		want := wantOut[segment]
    		if want != got {
    			t.Errorf("%s: got %q; want %q", segment, got, want)
    		}
    		delete(wantOut, segment)
    
    		// We must explicitly assert properties of the
    		// Signature's receiver since it doesn't participate
    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SE_SACL_PROTECTED        = 0x2000
    	SE_RM_CONTROL_VALID      = 0x4000
    	SE_SELF_RELATIVE         = 0x8000
    )
    
    type ACCESS_MASK uint32
    
    // Constants for type ACCESS_MASK
    const (
    	DELETE                   = 0x00010000
    	READ_CONTROL             = 0x00020000
    	WRITE_DAC                = 0x00040000
    	WRITE_OWNER              = 0x00080000
    	SYNCHRONIZE              = 0x00100000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		got := [2]string{
    			sel.String(),
    			fmt.Sprintf("%s%v", direct, sel.Index()),
    		}
    		want := wantOut[syntax]
    		if want != got {
    			t.Errorf("%s: got %q; want %q", syntax, got, want)
    		}
    		delete(wantOut, syntax)
    
    		// We must explicitly assert properties of the
    		// Signature's receiver since it doesn't participate
    		// in Identical() or String().
    		sig, _ := sel.Type().(*Signature)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"cm": {",", 2, precComma},
    	"co": {"~", 1, precUnary},
    	"dV": {"/=", 2, precAssign},
    	"dX": {"[...]=", 3, precAssign},
    	"da": {"delete[] ", 1, precUnary},
    	"dc": {"dynamic_cast", 2, precPostfix},
    	"de": {"*", 1, precUnary},
    	"di": {"=", 2, precAssign},
    	"dl": {"delete ", 1, precUnary},
    	"ds": {".*", 2, precPtrMem},
    	"dt": {".", 2, precPostfix},
    	"dv": {"/", 2, precAssign},
    	"dx": {"]=", 2, precAssign},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    		p.free = re.Sub0[0]
    		*re = Regexp{}
    	} else {
    		re = new(Regexp)
    		p.numRegexp++
    	}
    	re.Op = op
    	return re
    }
    
    func (p *parser) reuse(re *Regexp) {
    	if p.height != nil {
    		delete(p.height, re)
    	}
    	re.Sub0[0] = p.free
    	p.free = re
    }
    
    func (p *parser) checkLimits(re *Regexp) {
    	if p.numRunes > maxRunes {
    		panic(ErrLarge)
    	}
    	p.checkSize(re)
    	p.checkHeight(re)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top