Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Filetime (0.27 sec)

  1. src/runtime/netpoll.go

    // Network poller descriptor.
    //
    // No heap pointers.
    type pollDesc struct {
    	_     sys.NotInHeap
    	link  *pollDesc      // in pollcache, protected by pollcache.lock
    	fd    uintptr        // constant for pollDesc usage lifetime
    	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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/runtime/metrics_test.go

    	}
    	total := gcTotal + scavTotal + stats.IdleTime + stats.UserTime
    	if total != stats.TotalTime {
    		t.Errorf("manually computed overall total does not match TotalTime: %d cpu-ns vs. %d cpu-ns", total, stats.TotalTime)
    	}
    	if total == 0 {
    		t.Error("total time is zero")
    	}
    	if gcTotal == 0 {
    		t.Error("GC total time is zero")
    	}
    	if stats.IdleTime == 0 {
    		t.Error("idle time is zero")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_tls13.go

    		if err != nil {
    			c.sendAlert(alertInternalError)
    			return err
    		}
    		m.label, err = c.config.encryptTicket(stateBytes, c.ticketKeys)
    		if err != nil {
    			return err
    		}
    	}
    	m.lifetime = uint32(maxSessionTicketLifetime / time.Second)
    
    	// ticket_age_add is a random 32-bit value. See RFC 8446, section 4.6.1
    	// The value is not stored anywhere; we never need to check the ticket age
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	// as the sum of time a G spends in the _Grunnable state before
    	// it transitions to _Grunning.
    	timeToRun timeHistogram
    
    	// idleTime is the total CPU time Ps have "spent" idle.
    	//
    	// Reset on each GC cycle.
    	idleTime atomic.Int64
    
    	// totalMutexWaitTime is the sum of time goroutines have spent in _Gwaiting
    	// with a waitreason of the form waitReasonSync{RW,}Mutex{R,}Lock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. cmd/utils.go

    			}
    		}
    	}
    	return dst, nil
    }
    
    func setDefaultProfilerRates() {
    	runtime.MemProfileRate = 128 << 10 // 512KB -> 128K - Must be constant throughout application lifetime.
    	runtime.SetMutexProfileFraction(0) // Disable until needed
    	runtime.SetBlockProfileRate(0)     // Disable until needed
    }
    
    // Starts a profiler returns nil if profiler is not enabled, caller needs to handle this.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry.go

    	// its class and protocol. This is protected by mu.
    	// Currently, this only applies to metrics, but a similar concept can likely be applied to logging and
    	// tracing for performance.
    	// The computedMetricsFilters lifetime is bound to the Telemetries object. During a push context
    	// creation, we will preserve the Telemetries (and thus the cache) if not Telemetries are modified.
    	// As result, this cache will live until any Telemetry is modified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. src/go/types/call.go

    				// both, the value and the pointer receiver method set and represent
    				// them in a single structure.
    				// TODO(gri) Consider also using a method set cache for the lifetime
    				// of checker once we rely on MethodSet lookup instead of individual
    				// lookup.
    				mset := NewMethodSet(typ)
    				if m := mset.Lookup(check.pkg, sel); m == nil || m.obj != obj {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    	// Starting at the average size uses at most 2x the space that
    	// an ideal algorithm would have used.
    	// This is just a heuristic to avoid excessive stack growth work
    	// early in a goroutine's lifetime. See issue 18138. Stacks that
    	// are allocated too small can still grow, and stacks allocated
    	// too large can still shrink.
    	var scannedStackSize uint64
    	var scannedStacks uint64
    	for _, p := range allp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. src/runtime/panic.go

    // It also poisons *drangefunc.head so that any future
    // deferprocat using that head will throw.
    // (The atomic head is ordinary garbage collected memory so that
    // it's not a problem if user code holds onto it beyond
    // the lifetime of drangefunc.)
    //
    // TODO: We could arrange for the compiler to call into the
    // runtime after the loop finishes normally, to do an eager
    // deferconvert, which would catch calling the loop body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top