Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for Avery (0.04 sec)

  1. src/crypto/ecdh/nist.go

    	if len(a) != len(b) {
    		panic("crypto/ecdh: internal error: mismatched isLess inputs")
    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    	// 72 bytes is enough for every scalar in this package, and having a fixed
    	// size lets us avoid heap allocations.
    	if len(a) > 72 {
    		panic("crypto/ecdh: internal error: isLess input too large")
    	}
    	bufA, bufB := make([]byte, 72), make([]byte, 72)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/internal/coverage/encodecounter/encode.go

    }
    
    func (cfw *CoverageDataWriter) writeCounters(visitor CounterVisitor, ws *slicewriter.WriteSeeker) error {
    	// Notes:
    	// - this version writes everything little-endian, which means
    	//   a call is needed to encode every value (expensive)
    	// - we may want to move to a model in which we just blast out
    	//   all counters, or possibly mmap the file and do the write
    	//   implicitly.
    	ctrb := make([]byte, 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/runtime/coro.go

    	//
    	// There's a lot of state manipulation performed with shortcuts
    	// but we need to make sure the tracer can only observe the
    	// start and end states to maintain a coherent model and avoid
    	// emitting an event for every single transition.
    	trace := traceAcquire()
    
    	if locked {
    		// Detach the goroutine from the thread; we'll attach to the goroutine we're
    		// switching to before returning.
    		gp.lockedm.set(nil)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. pkg/volume/nfs/nfs.go

    			}
    			notMnt, mntErr := mount.IsNotMountPoint(nfsMounter.mounter, dir)
    			if mntErr != nil {
    				klog.Errorf("IsNotMountPoint check failed: %v", mntErr)
    				return err
    			}
    			if !notMnt {
    				// This is very odd, we don't expect it.  We'll try again next sync loop.
    				klog.Errorf("%s is still mounted, despite call to unmount().  Will try again next sync loop.", dir)
    				return err
    			}
    		}
    		os.Remove(dir)
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // It seems highly unlikely to encounter such a case but, to be safe, this
      // should be revisited for new resource-allocators that might potentially
      // break our currently guaranteed correctness.
      // For context, we are very conservative here compared to
      // `auto_control_deps.py` where it is assumed that allocated resource values
      // NEVER alias. We should align our assumptions in the future.
      static constexpr int64_t kUnknownResourceId = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/internal/trace/resources.go

    	// an (Event).Stack would refer to the stack trace of whoever created the
    	// goroutine.
    	Stack Stack
    
    	// The actual transition data. Stored in a neutral form so that
    	// we don't need fields for every kind of resource.
    	id       int64
    	oldState uint8
    	newState uint8
    }
    
    func goStateTransition(id GoID, from, to GoState) StateTransition {
    	return StateTransition{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/cache_based_manager.go

    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, the cached versions of all objects
    //     is referencing are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/build/relnote/links.go

    			})
    		// Don't look for links in anything else.
    		default:
    			res = append(res, in)
    		}
    	}
    	return res
    }
    
    // splitAtBrackets rewrites ins so that every '[' and ']' is the only character
    // of its Plain.
    // For example, the element
    //
    //	[Plain("the [Buffer] is")]
    //
    // is rewritten to
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/encoding/pem/pem.go

    // no PEM data is found, p is nil and the whole of the input is returned in
    // rest.
    func Decode(data []byte) (p *Block, rest []byte) {
    	// pemStart begins with a newline. However, at the very beginning of
    	// the byte array, we'll accept the start string without it.
    	rest = data
    	for {
    		if bytes.HasPrefix(rest, pemStart[1:]) {
    			rest = rest[len(pemStart)-1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/sync/pool_test.go

    	}
    	// Check that at least some PopHeads succeeded. We skip this
    	// check in short mode because it's common enough that the
    	// queue will stay nearly empty all the time and a PopTail
    	// will happen during the window between every PushHead and
    	// PopHead.
    	if !testing.Short() && nPopHead == 0 {
    		t.Errorf("popHead never succeeded")
    	}
    }
    
    func TestNilPool(t *testing.T) {
    	catch := func() {
    		if recover() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top