Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for DELETE (0.09 sec)

  1. src/go/doc/example.go

    	// Remove predeclared identifiers from unresolved list.
    	for n := range unresolved {
    		if predeclaredTypes[n] || predeclaredConstants[n] || predeclaredFuncs[n] {
    			delete(unresolved, n)
    		}
    	}
    
    	// Use unresolved identifiers to determine the imports used by this
    	// example. The heuristic assumes package names match base import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    		m.UnsafeVals = make(map[ssa.ID]bool)
    		m.UnsafeBlocks = make(map[ssa.ID]bool)
    	} else {
    		for k := range m.Vals {
    			delete(m.Vals, k)
    		}
    		for k := range m.UnsafeVals {
    			delete(m.UnsafeVals, k)
    		}
    		for k := range m.UnsafeBlocks {
    			delete(m.UnsafeBlocks, k)
    		}
    	}
    	m.DeferReturn = objw.StackMapDontCare
    }
    
    func (m *Map) set(v *ssa.Value, i objw.StackMapIndex) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/archive/tar/writer.go

    			paxHdrs[paxGNUSparseMinor] = "0"
    			paxHdrs[paxGNUSparseName] = realName
    			paxHdrs[paxGNUSparseRealSize] = strconv.FormatInt(realSize, 10)
    			paxHdrs[paxSize] = strconv.FormatInt(hdr.Size, 10)
    			delete(paxHdrs, paxPath) // Recorded by paxGNUSparseName
    		}
    	*/
    	_ = realSize
    
    	// Write PAX records to the output.
    	isGlobal := hdr.Typeflag == TypeXGlobalHeader
    	if len(paxHdrs) > 0 || isGlobal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fsys/fsys.go

    		if from == "" {
    			return fmt.Errorf("empty string key in overlay file Replace map")
    		}
    		cfrom := canonicalize(from)
    		if to != "" {
    			// Don't canonicalize "", meaning to delete a file, because then it will turn into ".".
    			to = canonicalize(to)
    		}
    		if otherFrom, seen := reverseCanonicalized[cfrom]; seen {
    			return fmt.Errorf(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    		return fmt.Errorf("copying %s to %s: %v", src, dst, err)
    	}
    	return nil
    }
    
    // mayberemovefile removes a file only if it is a regular file
    // When running as a user with sufficient privileges, we may delete
    // even device files, for example, which is not intended.
    func mayberemovefile(s string) {
    	if fi, err := os.Lstat(s); err == nil && !fi.Mode().IsRegular() {
    		return
    	}
    	os.Remove(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    	}
    	reset := func() { s = connRequestSet{} }
    
    	t.Run("add-delete", func(t *testing.T) {
    		reset()
    		wantLen(0)
    		dh := s.Add(nil)
    		wantLen(1)
    		if !s.Delete(dh) {
    			t.Fatal("failed to delete")
    		}
    		wantLen(0)
    		if s.Delete(dh) {
    			t.Error("delete worked twice")
    		}
    		wantLen(0)
    	})
    	t.Run("take-before-delete", func(t *testing.T) {
    		reset()
    		ch1 := make(chan connRequest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. src/go/types/infer.go

    				w.inferred[i] = nil
    			}
    		}
    		// If we don't have one of our type parameters, the cycle is due
    		// to an ordinary recursive type and we can just stop walking it.
    		return
    	}
    	w.seen[typ] = true
    	defer delete(w.seen, typ)
    
    	switch t := typ.(type) {
    	case *Basic:
    		// nothing to do
    
    	// *Alias:
    	//      This case should not occur because of Unalias(typ) at the top.
    
    	case *Array:
    		w.typ(t.elem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/infer.go

    				w.inferred[i] = nil
    			}
    		}
    		// If we don't have one of our type parameters, the cycle is due
    		// to an ordinary recursive type and we can just stop walking it.
    		return
    	}
    	w.seen[typ] = true
    	defer delete(w.seen, typ)
    
    	switch t := typ.(type) {
    	case *Basic:
    		// nothing to do
    
    	// *Alias:
    	//      This case should not occur because of Unalias(typ) at the top.
    
    	case *Array:
    		w.typ(t.elem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/net/http/cookie.go

    	Domain     string    // optional
    	Expires    time.Time // optional
    	RawExpires string    // for reading cookies only
    
    	// MaxAge=0 means no 'Max-Age' attribute specified.
    	// MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
    	// MaxAge>0 means Max-Age attribute present and given in seconds
    	MaxAge      int
    	Secure      bool
    	HttpOnly    bool
    	SameSite    SameSite
    	Partitioned bool
    	Raw         string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	cache.Put(keys[0], nil)
    	if _, ok := cache.Get(keys[0]); ok {
    		t.Fatalf("session cache failed to delete key 0")
    	}
    
    	// Delete entry 2. LRU should keep 4 and 5
    	cache.Put(keys[2], nil)
    	if _, ok := cache.Get(keys[2]); ok {
    		t.Fatalf("session cache failed to delete key 4")
    	}
    	for i := 4; i < 6; i++ {
    		if s, ok := cache.Get(keys[i]); !ok || s != &cs[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top