Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for vSlots (0.2 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

        const renderCommitIds = function (commits) {
            return commits.map(function (commit) {
                return commit.substring(0, 7);
            }).join('|');
        };
    
        const plots = [];
    
        const togglePlot = function (chartId, label) {
            const plot = plots[chartId];
            const plotData = plot.getData();
            $.each(plotData, function (index, value) {
                if (value.label == label) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. tests/integration/pilot/vm_test.go

    						List(context.TODO(), metav1.ListOptions{LabelSelector: "istio=pilot"})
    					if err != nil {
    						return err
    					}
    					if len(pilotRes.Items) != 2 {
    						return errors.New("expected 2 pilots")
    					}
    					return nil
    				}, retry.Timeout(10*time.Second))
    
    				// get the initial workload entry state
    				entries := getWorkloadEntriesOrFail(t, autoVM)
    				if len(entries) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. doc/next/5-toolchain.md

    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    For 386 and amd64, the compiler will use information from PGO to align certain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/runtime/mcentral.go

    	return &c.partial[sweepgen/2%2]
    }
    
    // fullUnswept returns the spanSet which holds unswept spans without any
    // free slots for this sweepgen.
    func (c *mcentral) fullUnswept(sweepgen uint32) *spanSet {
    	return &c.full[1-sweepgen/2%2]
    }
    
    // fullSwept returns the spanSet which holds swept spans without any
    // free slots for this sweepgen.
    func (c *mcentral) fullSwept(sweepgen uint32) *spanSet {
    	return &c.full[sweepgen/2%2]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/sync/poolqueue.go

    // multi-consumer queue. The single producer can both push and pop
    // from the head, and consumers can pop from the tail.
    //
    // It has the added feature that it nils out unused slots to avoid
    // unnecessary retention of objects. This is important for sync.Pool,
    // but not typically a property considered in the literature.
    type poolDequeue struct {
    	// headTail packs together a 32-bit head index and a 32-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. releasenotes/notes/deferred_cluster_creation.yaml

    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Added** an experimental feature to enable cluster creation on worker threads inline during requests.
      This will save memory and CPU cycles in cases where there are lots of inactive clusters and > 1 worker thread.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 402 bytes
    - Viewed (0)
  7. cmd/veeam-sos-api.go

    //
    //   - <StorageConcurrentTasksLimit>
    //     Setting reduces the parallel Repository Task slots that offload or write data to object storage. The same user interface
    //     setting overwrites the storage-defined setting.
    //     Optional value, default 0, range: 0-unlimited (0 equals unlimited, which means the maximum configured repository task
    //     slots are used for object offloading or writing)
    //
    //   - <KbBlockSize>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/internal/coverage/rtcov/rtcov.go

    var Meta struct {
    	// List contains the list of currently registered meta-data
    	// blobs for the running program.
    	List []CovMetaBlob
    
    	// PkgMap records mappings from hard-coded package IDs to
    	// slots in the List above.
    	PkgMap map[int]int
    
    	// Set to true if we discover a package mapping glitch.
    	hardCodedListNeedsUpdating bool
    }
    
    // AddMeta is invoked during package "init" functions by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. test/codegen/stack.go

    func Defer() {
    	for i := 0; i < 2; i++ {
    		defer func() {}()
    	}
    	// amd64:`CALL\truntime\.deferprocStack`
    	defer func() {}()
    }
    
    // Check that stack slots are shared among values of the same
    // type, but not pointer-identical types. See issue 65783.
    
    func spillSlotReuse() {
    	// The return values of getp1 and getp2 need to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/tracetype.go

    	// The maximum number of bytes required to hold the encoded type.
    	maxBytes := 1 + 5*traceBytesPerNumber + len(typName)
    
    	// Estimate the size of this record. This
    	// bound is pretty loose, but avoids counting
    	// lots of varint sizes.
    	//
    	// Add 1 because we might also write a traceAllocFreeTypesBatch byte.
    	var flushed bool
    	w, flushed = w.ensure(1 + maxBytes)
    	if flushed {
    		// Annotate the batch as containing types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top