Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for deletion (2.01 sec)

  1. src/cmd/go/internal/clean/clean.go

    // occurs, it will report the error.
    func removeFile(f string) {
    	err := os.Remove(f)
    	if err == nil || os.IsNotExist(err) {
    		return
    	}
    	// Windows does not allow deletion of a binary file while it is executing.
    	if runtime.GOOS == "windows" {
    		// Remove lingering ~ file from last attempt.
    		if _, err2 := os.Stat(f + "~"); err2 == nil {
    			os.Remove(f + "~")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    			os.Remove(dst + "~")
    		}
    	}
    
    	mayberemovefile(dst)
    	df, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)
    	if err != nil && runtime.GOOS == "windows" {
    		// Windows does not allow deletion of a binary file
    		// while it is executing. Try to move it out of the way.
    		// If the move fails, which is likely, we'll try again the
    		// next time we do an install of this binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/fetch.go

    // It should have entries for both module content sums and go.mod sums
    // (version ends with "/go.mod"). Existing sums will be preserved unless they
    // have been marked for deletion with TrimGoSum.
    func WriteGoSum(ctx context.Context, keep map[module.Version]bool, readonly bool) error {
    	goSum.mu.Lock()
    	defer goSum.mu.Unlock()
    
    	// If we haven't read the go.sum file yet, don't bother writing it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/archive/tar/writer_test.go

    		//	----------  0 0      0           0 May 13  2014 file4
    		//
    		// GNU tar v1.27.1 applies global headers to subsequent records,
    		// but does not do the following properly:
    		//	* It does not treat an empty record as deletion.
    		//	* It does not use subsequent global headers to update previous ones.
    		//
    		//	$ gnutar -tvf pax-global-records.tar
    		//	---------- 0/0               0 2017-07-13 19:40 global1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/selection.go

    func (s *Selection) Recv() Type { return s.recv }
    
    // Obj returns the object denoted by x.f; a *Var for
    // a field selection, and a *Func in all other cases.
    func (s *Selection) Obj() Object { return s.obj }
    
    // Type returns the type of x.f, which may be different from the type of f.
    // See Selection for more information.
    func (s *Selection) Type() Type {
    	switch s.kind {
    	case MethodVal:
    		// The type of x.f is a method with its receiver type set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    func UpdateWorkFile(wf *modfile.WorkFile) {
    	missingModulePaths := map[string]string{} // module directory listed in file -> abspath modroot
    
    	for _, d := range wf.Use {
    		if d.Path == "" {
    			continue // d is marked for deletion.
    		}
    		modRoot := d.Path
    		if d.ModulePath == "" {
    			missingModulePaths[d.Path] = modRoot
    		}
    	}
    
    	// Clean up and annotate directories.
    	// TODO(matloob): update x/mod to actually add module paths.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/README.vendor

    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named.go

    		orig := n.inst.orig
    		orig.resolve()
    		underlying := n.expandUnderlying()
    
    		n.tparams = orig.tparams
    		n.underlying = underlying
    		n.fromRHS = orig.fromRHS // for cycle detection
    
    		if len(orig.methods) == 0 {
    			n.setState(complete) // nothing further to do
    			n.inst.ctxt = nil
    		} else {
    			n.setState(resolved)
    		}
    		return n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. doc/go_spec.html

    _ = imag(3 << s)                   // illegal: 3 assumes complex type, cannot shift
    </pre>
    
    <p>
    Arguments of type parameter type are not permitted.
    </p>
    
    
    <h3 id="Deletion_of_map_elements">Deletion of map elements</h3>
    
    <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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/validtype.go

    // validType verifies that the given type does not "expand" indefinitely
    // producing a cycle in the type graph.
    // (Cycles involving alias types, as in "type A = [10]A" are detected
    // earlier, via the objDecl cycle detection mechanism.)
    func (check *Checker) validType(typ *Named) {
    	check.validType0(nopos, typ, nil, nil)
    }
    
    // validType0 checks if the given type is valid. If typ is a type parameter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top