Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for Summarize (0.42 sec)

  1. src/cmd/go/internal/modfetch/codehost/codehost.go

    	// If RepoSum is non-empty, then the resolution of this module version
    	// failed due to the repo being available but the version not being present.
    	// This depends on the entire state of the repo, which RepoSum summarizes.
    	// For Git, this is a hash of all the refs and their hashes.
    	RepoSum string `json:",omitempty"`
    }
    
    // A Tags describes the available tags in a code repository.
    type Tags struct {
    	Origin *Origin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/internal/profile/graph.go

    	// Cum includes all descendents.
    	Flat, FlatDiv, Cum, CumDiv int64
    
    	// In and out Contains the nodes immediately reaching or reached by
    	// this node.
    	In, Out EdgeMap
    }
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // FlatValue returns the exclusive value for this node, computing the
    // mean if a divisor is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	// See tests for examples.
    	cppRegExp                = regexp.MustCompile(`^(?:[_a-zA-Z]\w*::)+(_*[A-Z]\w*::~?[_a-zA-Z]\w*(?:<.*>)?)`)
    	cppAnonymousPrefixRegExp = regexp.MustCompile(`^\(anonymous namespace\)::`)
    )
    
    // Graph summarizes a performance profile into a format that is
    // suitable for visualization.
    type Graph struct {
    	Nodes Nodes
    }
    
    // Options encodes the options for constructing a graph
    type Options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager.go

    	podLimits := resourcehelper.PodLimits(pod, resourcehelper.PodResourcesOptions{})
    	_, found := podLimits[v1.ResourceEphemeralStorage]
    	if !found {
    		return false
    	}
    
    	// pod stats api summarizes ephemeral storage usage (container, emptyDir, host[etc-hosts, logs])
    	podEphemeralStorageTotalUsage := &resource.Quantity{}
    	if podStats.EphemeralStorage != nil && podStats.EphemeralStorage.UsedBytes != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    	fdseq atomic.Uintptr // protects against stale pollDesc
    
    	// atomicInfo holds bits from closing, rd, and wd,
    	// which are only ever written while holding the lock,
    	// summarized for use by netpollcheckerr,
    	// which cannot acquire the lock.
    	// After writing these fields under lock in a way that
    	// might change the summary, code must call publishInfo
    	// before releasing the lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[validation-problem]]
    = Dealing with validation problems
    
    This page summarizes the different task (or in general work) validation problems that Gradle reports and provides guidance for fixing them.
    
    [[invalid_use_of_cacheable_annotation]]
    == Invalid use of cacheable annotation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. src/runtime/traceruntime.go

    	// the P just to get its attention (e.g. STW or sysmon retake) or we're trying to steal a P for
    	// ourselves specifically to keep running. The two contexts look different, but can be summarized
    	// fairly succinctly. In the former, we're a regular running goroutine and proc, if we have either.
    	// In the latter, we're a goroutine in a syscall.
    	goStatus := traceGoRunning
    	procStatus := traceProcRunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    // the liveness analysis work on single-word values as well, although
    // there are complications around interface values, slices, and strings,
    // all of which cannot be treated as individual words.
    
    // blockEffects summarizes the liveness effects on an SSA block.
    type blockEffects struct {
    	// Computed during Liveness.prologue using only the content of
    	// individual blocks:
    	//
    	//	uevar: upward exposed variables (used before set in block)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/internal/trace/gc.go

    // multiple window sizes.
    type MMUCurve struct {
    	series []mmuSeries
    }
    
    type mmuSeries struct {
    	util []MutatorUtil
    	// sums[j] is the cumulative sum of util[:j].
    	sums []totalUtil
    	// bands summarizes util in non-overlapping bands of duration
    	// bandDur.
    	bands []mmuBand
    	// bandDur is the duration of each band.
    	bandDur int64
    }
    
    type mmuBand struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    But all this functionality of using asynchronous code with `async` and `await` is many times summarized as using "coroutines". It is comparable to the main key feature of Go, the "Goroutines".
    
    ## Conclusion
    
    Let's see the same phrase from above:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top