Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for avoiding (0.15 sec)

  1. src/internal/fuzz/worker.go

    	return &workerClient{workerComm: comm, m: m}
    }
    
    // Close shuts down the connection to the RPC server (the worker process) by
    // closing fuzz_in. Close drains fuzz_out (avoiding a SIGPIPE in the worker),
    // and closes it after the worker process closes the other end.
    func (wc *workerClient) Close() error {
    	wc.mu.Lock()
    	defer wc.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/math/big/int.go

    // See Knuth, The Art of Computer Programming, Vol. 2, Section 4.5.2, Algorithm L.
    // This implementation uses the improved condition by Collins requiring only one
    // quotient and avoiding the possibility of single Word overflow.
    // See Jebelean, "Improving the multiprecision Euclidean algorithm",
    // Design and Implementation of Symbolic Computation Systems, pp 45-58.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. 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)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     underlying this step or, if {@code get()} throws a different kind of exception, that
       *     exception itself. To avoid hiding bugs and other unrecoverable errors, callers should
       *     prefer more specific types, avoiding {@code Throwable.class} in particular.
       * @param fallback the function to be called if this step fails with the expected exception type.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Gradle exposes an API to declare what a repository may or may not contain.
    There are different use cases for it:
    
    - performance, when you know a dependency will never be found in a specific repository
    - security, by avoiding leaking what dependencies are used in a private project
    - reliability, when some repositories contain corrupted metadata or artifacts
    
    It's even more important when considering that the declared order of repositories matter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  6. src/runtime/time.go

    	}
    
    	// t.maybeAdd must be called with t unlocked,
    	// because it needs to lock t.ts before t.
    	// Then it will do nothing if t.needsAdd(state) is false.
    	// Check that now before the unlock,
    	// avoiding the extra lock-lock-unlock-unlock
    	// inside maybeAdd when t does not need to be added.
    	add := t.needsAdd()
    	t.unlock()
    	if add {
    		t.maybeAdd()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. internal/grid/connection.go

    		// Append as byte slices.
    		for _, q := range queue {
    			toSend = msgp.AppendBytes(toSend, q)
    			PutByteBuffer(q)
    		}
    		queue = queue[:0]
    		queueSize = 0
    
    		// Combine writes.
    		// Consider avoiding buffer copy.
    		buf.Reset()
    		err = wsw.writeMessage(&buf, c.side, ws.OpBinary, toSend)
    		if err != nil {
    			if !xnet.IsNetworkOrHostDown(err, true) {
    				gridLogIf(ctx, fmt.Errorf("ws writeMessage: %w", err))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/obj9.go

    				// space to save the LR.
    				autosize += int32(c.ctxt.Arch.FixedFrameSize)
    			}
    
    			if p.Mark&LEAF != 0 && autosize < abi.StackSmall {
    				// A leaf function with a small stack can be marked
    				// NOSPLIT, avoiding a stack check.
    				p.From.Sym.Set(obj.AttrNoSplit, true)
    			}
    
    			p.To.Offset = int64(autosize)
    
    			q = p
    
    			if NeedTOCpointer(c.ctxt) && !isNOTOCfunc(c.cursym.Name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/order.go

    //
    // where k is []byte, T1 to Tn is a nesting of struct and array literals,
    // the allocation of backing bytes for the string can be avoided
    // by reusing the []byte backing array. These are special cases
    // for avoiding allocations when converting byte slices to strings.
    // It would be nice to handle these generally, but because
    // []byte keys are not allowed in maps, the use of string(k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  10. 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)
Back to top