Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for Everything (0.24 sec)

  1. src/internal/trace/gc.go

    		if duration1 >= int64(window) {
    			duration += duration1 - int64(window)
    		}
    	}
    	qMass := float64(duration) * maxQ
    
    	// Accumulate the MUD until we have precise information for
    	// everything to the left of qMass.
    	acc := accumulator{mmu: 1.0, bound: 1.0, preciseMass: qMass, mud: new(mud)}
    	acc.mud.setTrackMass(qMass)
    	c.mmu(window, &acc)
    
    	// Evaluate the quantiles on the accumulated MUD.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    }
    
    // BuildDeltaClusters generates the deltas (add and delete) for a given proxy. Currently, only service changes are reflected with deltas.
    // Otherwise, we fall back onto generating everything.
    func (configgen *ConfigGeneratorImpl) BuildDeltaClusters(proxy *model.Proxy, updates *model.PushRequest,
    	watched *model.WatchedResource,
    ) ([]*discovery.Resource, []string, model.XdsLogDetails, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	KubeAPIApprovedAnnotation = "api-approved.kubernetes.io"
    
    	// NoneConverter is a converter that only sets apiversion of the CR and leave everything else unchanged.
    	NoneConverter ConversionStrategyType = "None"
    	// WebhookConverter is a converter that calls to an external webhook to convert the CR.
    	WebhookConverter ConversionStrategyType = "Webhook"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. cmd/metacache-set.go

    	partial func(entries metaCacheEntries, errs []error)
    
    	// finished will be called when all streams have finished and
    	// more than one disk returned an error.
    	// Will not be called if everything operates as expected.
    	finished func(errs []error)
    }
    
    // listPathRaw will list a path on the provided drives.
    // See listPathRawOptions on how results are delivered.
    // Directories are always returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    Concurrency is different than parallelism. And it is better on **specific** scenarios that involve a lot of waiting. Because of that, it generally is a lot better than parallelism for web application development. But not for everything.
    
    So, to balance that out, imagine the following short story:
    
    > You have to clean a big, dirty house.
    
    *Yep, that's the whole story*.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pkg/volume/util/util.go

    func IsPodTerminated(pod *v1.Pod, podStatus v1.PodStatus) bool {
    	// TODO: the guarantees provided by kubelet status are not sufficient to guarantee it's safe to ignore a deleted pod,
    	// even if everything is notRunning (kubelet does not guarantee that when pod status is waiting that it isn't trying
    	// to start a container).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    	sKey, sValue := s.Key, s.Value
    	var sExtra ast.Expr = nil // (used only in types2 fork)
    	isDef := s.Tok == token.DEFINE
    	rangeVar := s.X
    	noNewVarPos := inNode(s, s.TokPos)
    
    	// Everything from here on is shared between cmd/compile/internal/types2 and go/types.
    
    	// check expression to iterate over
    	var x operand
    	check.expr(nil, &x, rangeVar)
    
    	// determine key/value types
    	var key, val Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    // In the example: http://<host>/<path>?<searchpart> -> backend where
    // where parts of the url correspond to RFC 3986, this resource will be used
    // to match against everything after the last '/' and before the first '?'
    // or '#'.
    type HTTPIngressRuleValue struct {
    	// paths is a collection of paths that map requests to backends.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. src/runtime/chan.go

    	// Make sure we unlock after setting activeStackChans and
    	// unsetting parkingOnChan. The moment we unlock chanLock
    	// we risk gp getting readied by a channel operation and
    	// so gp could continue running before everything before
    	// the unlock is visible (even to gp itself).
    	unlock((*mutex)(chanLock))
    	return true
    }
    
    // compiler implements
    //
    //	select {
    //	case c <- v:
    //		... foo
    //	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

    # install' will place binaries that match the host platform directly in $GOBIN
    # while placing cross compiled binaries into `platform_arch` subdirs.  This
    # complicates pretty much everything else we do around packaging and such.
    kube::golang::place_bins() {
      local host_platform
      host_platform=$(kube::golang::host_platform)
    
      V=2 kube::log::status "Placing binaries"
    
      local platform
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top