Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 756 for deltaY (0.12 sec)

  1. src/runtime/mstats.go

    	}
    }
    
    // heapStatsDelta contains deltas of various runtime memory statistics
    // that need to be updated together in order for them to be kept
    // consistent with one another.
    type heapStatsDelta struct {
    	// Memory stats.
    	committed       int64 // byte delta of memory committed
    	released        int64 // byte delta of released memory generated
    	inHeap          int64 // byte delta of memory placed in the heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/goobj.go

    }
    
    type goobjReloc struct {
    	Off  int32
    	Size uint8
    	Type objabi.RelocType
    	Add  int64
    	Sym  string
    }
    
    func (r goobjReloc) String(insnOffset uint64) string {
    	delta := int64(r.Off) - int64(insnOffset)
    	s := fmt.Sprintf("[%d:%d]%s", delta, delta+int64(r.Size), r.Type)
    	if r.Sym != "" {
    		if r.Add != 0 {
    			return fmt.Sprintf("%s:%s+%d", s, r.Sym, r.Add)
    		}
    		return fmt.Sprintf("%s:%s", s, r.Sym)
    	}
    	if r.Add != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/monitoring.go

    		[]float64{1, 10000, 1000000, 4000000, 10000000, 40000000},
    		monitoring.WithUnit(monitoring.Bytes),
    	)
    )
    
    func recordXDSClients(version string, delta float64) {
    	xdsClientTrackerMutex.Lock()
    	defer xdsClientTrackerMutex.Unlock()
    	xdsClientTracker[version] += delta
    	xdsClients.With(versionTag.Value(version)).Record(xdsClientTracker[version])
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    	// A running goroutine emits a task begin.
    	t.RawEvent(go122.EvEventBatch, nil, 1 /*gen*/, 0 /*thread ID*/, 0 /*timestamp*/, 5 /*batch length*/)
    	t.RawEvent(go122.EvGoCreate, nil, 0 /*timestamp delta*/, 1 /*go ID*/, 0, 0)
    
    	// Write an invalid batch event for the next generation.
    	t.RawEvent(go122.EvEventBatch, nil, 2 /*gen*/, 0 /*thread ID*/, 0 /*timestamp*/, 50 /*batch length (invalid)*/)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    //     Disable notifications for fd. Return an errno value.
    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    //     poll without blocking. If delta > 0, block for up to delta nanoseconds.
    //     Return a list of goroutines built by calling netpollready,
    //     and a delta to add to netpollWaiters when all goroutines are ready.
    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. docs/en/docs/img/sponsors/deta.svg

    deta.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 55.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    		if dir == model.TrafficDirectionInbound {
    			// Append all inbound clusters because in both stow/delta we always build all inbound clusters.
    			// In reality, the delta building is only for outbound clusters. We need to revist here once we support delta for inbound.
    			// So deletedClusters.Difference(builtClusters) would give us the correct deleted inbound clusters.
    			deletedClusters.Insert(cluster)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. test/fixedbugs/issue15281.go

    		f2(c, x)
    	}
    }
    
    func f1(c chan []byte, start int64) {
    	for x := range c {
    		if delta := inuse() - start; delta < 9<<20 {
    			println("BUG: f1: after alloc: expected delta at least 9MB, got: ", delta)
    			println(x)
    		}
    		x = nil
    		if delta := inuse() - start; delta > 1<<20 {
    			println("BUG: f1: after alloc: expected delta below 1MB, got: ", delta)
    			println(x)
    		}
    	}
    }
    
    func f2(c chan []byte, start int64) {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 09:45:44 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer_test.go

    							deltas[i] += *workLeft
    							work -= *workLeft
    							*workLeft = 0
    						}
    					}
    					return deltas[0], deltas[1], deltas[2]
    				}
    				var (
    					gcDuration          int64
    					assistTime          int64
    					bytesAllocatedBlack int64
    				)
    				for heapScanWorkLeft+stackScanWorkLeft+globalsScanWorkLeft > 0 {
    					// Simulate GC assist pacing.
    					//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. pilot/pkg/features/experimental.go

    	DeltaXds = env.Register("ISTIO_DELTA_XDS", true,
    		"If enabled, pilot will only send the delta configs as opposed to the state of the world on a "+
    			"Resource Request. This feature uses the delta xds api, but does not currently send the actual deltas.").Get()
    
    	EnableQUICListeners = env.Register("PILOT_ENABLE_QUIC_LISTENERS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top