Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for avoiding (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// dispatchEvent() call. That may prevent Go GC from freeing items
    	// from previous phases that are sitting behind the current length
    	// of the slice, but there is only a limited number of those and the
    	// gain from avoiding memory allocations is much bigger.
    	c.watchersBuffer = c.watchersBuffer[:0]
    
    	if event.Type == watch.Bookmark {
    		c.startDispatchingBookmarkEventsLocked()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	"k8s.io/kubernetes/pkg/kubelet/util/format"
    	sc "k8s.io/kubernetes/pkg/securitycontext"
    )
    
    const (
    	// The api version of kubelet runtime api
    	kubeRuntimeAPIVersion = "0.1.0"
    	// A minimal shutdown window for avoiding unnecessary SIGKILLs
    	minimumGracePeriodInSeconds = 2
    
    	// The expiration time of version cache.
    	versionCacheTTL = 60 * time.Second
    	// How frequently to report identical errors
    	identicalErrorDelay = 1 * time.Minute
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    // Even if this is stack-allocated, its pointer-receiver methods don't know that
    // their receiver is on the stack, so they still emit write barriers. Here we
    // address that by carefully avoiding any pointers in this type. Another
    // approach would be to split this into a mutable part that's passed by pointer
    // but contains no pointers itself and an immutable part that's passed and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    		// of view if we simply do a GetObjectInfo() on this prefix by treating it as an object
    		// We save a lot of calls over the network.
    		//
    		// This happens repeatedly for all objects that are created concurrently() avoiding this
    		// as a List() call is an important performance improvement.
    		//
    		// Spark based s3a committers are a  big enough use-case to have this optimization.
    		//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		return
    	}
    
    	if err := fsys.Init(base.Cwd()); err != nil {
    		base.Fatal(err)
    	}
    
    	// Disable any prompting for passwords by Git.
    	// Only has an effect for 2.3.0 or later, but avoiding
    	// the prompt in earlier versions is just too hard.
    	// If user has explicitly set GIT_TERMINAL_PROMPT=1, keep
    	// prompting.
    	// See golang.org/issue/9341 and golang.org/issue/12706.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    					// the value as an integer constant,
    					// but not as a general constant.
    					// Treat this as a variable of the
    					// appropriate type, not a constant,
    					// to get C-style type handling,
    					// avoiding the problem that C permits
    					// uint64(-1) but Go does not.
    					// See issue 26066.
    					n.Kind = "var"
    				default:
    					n.Const = fmt.Sprintf("%f", floats[i])
    				}
    			case "sconst":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top