Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for DELETE (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    // RemoveNumLabel removes all numerical labels associated with the specified key for all
    // samples in the profile.
    func (p *Profile) RemoveNumLabel(key string) {
    	for _, sample := range p.Sample {
    		delete(sample.NumLabel, key)
    		delete(sample.NumUnit, key)
    	}
    }
    
    // DiffBaseSample returns true if a sample belongs to the diff base and false
    // otherwise.
    func (s *Sample) DiffBaseSample() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    			copy(errList[index:], errList[index+1:])
    			filemap[line] = errList[:n]
    		} else {
    			// last entry - remove errList from filemap
    			delete(filemap, line)
    		}
    
    		// if filemap is empty, eliminate from errmap
    		if len(filemap) == 0 {
    			delete(errmap, filename)
    		}
    	}
    
    	// there should be no expected errors left
    	if len(errmap) > 0 {
    		t.Errorf("--- %s: unreported errors:", pkgName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/internal/dag/parse.go

    	g.Nodes = append(g.Nodes, label)
    	g.edges[label] = map[string]bool{}
    	return true
    }
    
    func (g *Graph) AddEdge(from, to string) {
    	g.edges[from][to] = true
    }
    
    func (g *Graph) DelEdge(from, to string) {
    	delete(g.edges[from], to)
    }
    
    func (g *Graph) HasEdge(from, to string) bool {
    	return g.edges[from] != nil && g.edges[from][to]
    }
    
    func (g *Graph) Edges(from string) []string {
    	edges := make([]string, 0, 16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      // Helper functions follow:
    
      // hilite changes the highlighting of elements corresponding to specified src.
      function hilite(src, on) {
        if (on) {
          matches.add(src);
        } else {
          matches.delete(src);
        }
        toggleClass(src, 'hilite', on);
        return true;
      }
    
      // Display action menu (triggered by right-click on a frame)
      function showActionMenu(e, box) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/internal/trace/reader.go

    		if err != nil {
    			return false, err
    		}
    		if ok {
    			// If we successfully refreshed, update the heap.
    			heapUpdate(r.frontier, i)
    		} else {
    			// There's nothing else to read. Delete this cursor from the frontier.
    			r.frontier = heapRemove(r.frontier, i)
    		}
    		return true, nil
    	}
    	// Inject a CPU sample if it comes next.
    	if len(r.cpuSamples) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/internal/trace/trace_test.go

    			if !overflowed {
    				t.Fail()
    			}
    		}
    
    		for stack, traceSamples := range traceStacks {
    			pprofSamples := pprofStacks[stack]
    			delete(pprofStacks, stack)
    			if traceSamples < pprofSamples {
    				t.Logf("execution trace did not include all CPU profile samples for stack %q; %d in profile, %d in trace",
    					stack, pprofSamples, traceSamples)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // If SetHasher is not called, the Map will create a private hasher at
    // the first call to Insert.
    func (m *Map) SetHasher(hasher Hasher) {
    	m.hasher = hasher
    }
    
    // Delete removes the entry with the given key, if any.
    // It returns true if the entry was found.
    func (m *Map) Delete(key types.Type) bool {
    	if m != nil && m.table != nil {
    		hash := m.hasher.Hash(key)
    		bucket := m.table[hash]
    		for i, e := range bucket {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/syscall/js/js_test.go

    		dummys.Get("zero").Set("badField", 42)
    	})
    }
    
    func TestDelete(t *testing.T) {
    	dummys.Set("test", 42)
    	dummys.Delete("test")
    	if dummys.Call("hasOwnProperty", "test").Bool() {
    		t.Errorf("property still exists")
    	}
    
    	expectValueError(t, func() {
    		dummys.Get("zero").Delete("badField")
    	})
    }
    
    func TestIndex(t *testing.T) {
    	if got := dummys.Get("someArray").Index(1).Int(); got != 42 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    // (see AttrCgoExportDynamic).
    func (l *Loader) SetAttrCgoExportDynamic(i Sym, v bool) {
    	if v {
    		l.attrCgoExportDynamic[i] = struct{}{}
    	} else {
    		delete(l.attrCgoExportDynamic, i)
    	}
    }
    
    // ForAllCgoExportDynamic calls f for every symbol that has been
    // marked with the "cgo_export_dynamic" compiler directive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	}
    
    	// Update or delete the existing Require entries to preserve
    	// only the first for each module path in req.
    	for _, r := range f.Require {
    		e, ok := need[r.Mod.Path]
    		if ok {
    			r.setVersion(e.version)
    			r.setIndirect(e.indirect)
    		} else {
    			r.markRemoved()
    		}
    		delete(need, r.Mod.Path)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top