Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for mainsail (0.32 sec)

  1. src/index/suffixarray/sais2.go

    	//	- position i is type S if text[i] < text[i+1], or if text[i] == text[i+1] && i+1 is type S.
    	//	- position i is type L if text[i] > text[i+1], or if text[i] == text[i+1] && i+1 is type L.
    	//
    	// The backward scan lets us maintain the current type,
    	// update it when we see c0 != c1, and otherwise leave it alone.
    	// We want to identify all S positions with a preceding L.
    	// Position len(text) is one such position by definition, but we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// that the scavenger should target. For example, 5 means we target 95%
    	// of the limit.
    	//
    	// The purpose of shooting lower than the limit is to ensure that, once
    	// close to the limit, the scavenger is working hard to maintain it. If
    	// we have a memory limit set but are far away from it, there's no harm
    	// in leaving up to 100-retainExtraPercent live, and it's more efficient
    	// anyway, for the same reasons that retainExtraPercent exists.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	memoryLimitMinHeapGoalHeadroom = 1 << 20
    
    	// memoryLimitHeapGoalHeadroomPercent is how headroom the memory-limit-based
    	// heap goal should have as a percent of the maximum possible heap goal allowed
    	// to maintain the memory limit.
    	memoryLimitHeapGoalHeadroomPercent = 3
    )
    
    // gcController implements the GC pacing controller that determines
    // when to trigger concurrent garbage collection and how much marking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///
    /// All pointers defined in this structure point to memory allocated by the DSO
    /// using an allocator provided by core TensorFlow when calling `TF_InitPlugin`.
    ///
    /// IMPORTANT: To maintain binary compatibility, the layout of this structure
    /// must not change! In the unlikely case that a new type of file needs to be
    /// supported, add the new ops and metadata at the end of the structure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    // when we are only loading individual packages, so we set the pkgInAll flag
    // regardless of the whether the "all" pattern is a root.
    // (This is necessary to maintain the “import invariant” described in
    // https://golang.org/design/36460-lazy-module-loading.)
    //
    // Because "go mod vendor" prunes out the tests of vendored packages, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	needSort := false
    	for _, pkg := range pkgs {
    		if !pkg.fromExternalModule() {
    			// pkg was not loaded from a module dependency, so we don't need
    			// to do anything special to maintain that dependency.
    			continue
    		}
    
    		switch {
    		case pkg.flags.has(pkgInAll):
    			// pkg is transitively imported by a package or test in the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    	//
    	// For dynamic calls made from an external object, a caller maintains
    	// a TOC pointer only when an R_PPC64_REL24 relocation is used.
    	// An R_PPC64_REL24_NOTOC relocation does not use or maintain
    	// a TOC pointer, and almost always implies a Power10 target.
    	//
    	// For dynamic calls made from a Go caller, a TOC relative stub is
    	// always needed when a TOC pointer is maintained (specifically, if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    			// TODO: Remove lookup by endpoint ID, and use the IP address only, so we don't need to maintain multiple keys for lookup.
    			if len(ep.hnsID) > 0 {
    				newHnsEndpoint = queriedEndpoints[ep.hnsID]
    			}
    
    			if newHnsEndpoint == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    	// Make the volume available again
    	if err = ctrl.unbindVolume(ctx, volume); err != nil {
    		// Oops, could not save the volume and therefore the controller will
    		// recycle the volume again on next update. We _could_ maintain a cache
    		// of "recently recycled volumes" and avoid unnecessary recycling, this
    		// is left out as future optimization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// during current dispatching, but stopping was deferred to the end of
    	// dispatching that event to avoid race with closing channels in watchers.
    	watchersToStop []*cacheWatcher
    	// Maintain a timeout queue to send the bookmark event before the watcher times out.
    	// Note that this field when accessed MUST be protected by the Cacher.lock.
    	bookmarkWatchers *watcherBookmarkTimeBuckets
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top