Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for sally (0.04 sec)

  1. guava/src/com/google/common/collect/ImmutableMapEntry.java

       * created arrays to have a {@code @Nullable} element type even when they're created directly with
       * {@code new ImmutableMapEntry[...]}, so it seems silly to insist on that only here.
       */
      @SuppressWarnings("unchecked") // Safe as long as the javadocs are followed
      static <K, V> ImmutableMapEntry<K, V>[] createEntryArray(int size) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    // as it produces a binary tree in code,
    // with constant conditions and good branch prediction.
    // (Sadly it is the most verbose in source code.)
    // Binary search suffered from poor branch prediction.
    func typeOf(n ast.Node) uint64 {
    	// Fast path: nearly half of all nodes are identifiers.
    	if _, ok := n.(*ast.Ident); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    		Authorization:  NewDelegatingAuthorizationOptions(),
    		Audit:          NewAuditOptions(),
    		Features:       NewFeatureOptions(),
    		CoreAPI:        NewCoreAPIOptions(),
    		// Wired a global by default that sadly people will abuse to have different meanings in different repos.
    		// Please consider creating your own FeatureGate so you can have a consistent meaning for what a variable contains
    		// across different repos.  Future you will thank you.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/cmd/internal/buildid/note.go

    	return "", nil
    }
    
    // The Go build ID is stored at the beginning of the Mach-O __text segment.
    // The caller has already opened filename, to get f, and read a few kB out, in data.
    // Sadly, that's not guaranteed to hold the note, because there is an arbitrary amount
    // of other junk placed in the file ahead of the main text.
    func readMacho(name string, f *os.File, data []byte) (buildid string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. hack/update-vendor-licenses.sh

      local find_maxdepth
      local find_names
      local -a local_files=()
    
      # Necessary to expand {}
      case ${type} in
          LICENSE) find_names=(-iname 'licen[sc]e*')
                   find_maxdepth=1
                   # Sadly inconsistent in the wild, but mostly license files
                   # containing copyrights, but no readme/notice files containing
                   # licenses (except to "see license file")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/runtime/sys_windows_386.s

    	// SetLastError(0).
    	MOVL	$0, 0x34(FS)
    
    	MOVL	libcall_n(BX), CX
    
    	// Fast version, do not store args on the stack.
    	CMPL	CX, $0
    	JE	docall
    
    	// Copy args to the stack.
    	MOVL	CX, AX
    	SALL	$2, AX
    	SUBL	AX, SP			// room for args
    	MOVL	SP, DI
    	MOVL	libcall_args(BX), SI
    	CLD
    	REP; MOVSL
    
    docall:
    	// Call stdcall or cdecl function.
    	// DI SI BP BX are preserved, SP is not
    	CALL	libcall_fn(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/crypto/tls/prf.go

    type finishedHash struct {
    	client hash.Hash
    	server hash.Hash
    
    	// Prior to TLS 1.2, an additional MD5 hash is required.
    	clientMD5 hash.Hash
    	serverMD5 hash.Hash
    
    	// In TLS 1.2, a full buffer is sadly required.
    	buffer []byte
    
    	version uint16
    	prf     func(result, secret, label, seed []byte)
    }
    
    func (h *finishedHash) Write(msg []byte) (n int, err error) {
    	h.client.Write(msg)
    	h.server.Write(msg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top