Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Goulden (1.48 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

              // chains of SetFutures
              // Handling this special case is important because there is no way to pass an executor to
              // setFuture, so a user couldn't break the chain by doing this themselves.  It is also
              // potentially common if someone writes a recursive Futures.transformAsync transformer.
              future = setFuture.owner;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    	var index []byte
    	if opts.IndexCB != nil {
    		index = opts.IndexCB()
    	}
    
    	modTime := UTCNow()
    
    	for i, w := range writers {
    		if w == nil {
    			// Make sure to avoid writing to disks which we couldn't complete in erasure.Encode()
    			onlineDisks[i] = nil
    			continue
    		}
    		partsMetadata[i].Data = inlineBuffers[i].Bytes()
    		partsMetadata[i].AddObjectPart(1, "", n, data.ActualSize(), modTime, index, nil)
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
  3. cmd/xl-storage-format-v2.go

    				topSig = ver.header
    			} else {
    				consistent = consistent && ver.header == topSig
    			}
    			tops = append(tops, vers[0])
    		}
    
    		// Check if done...
    		if len(tops) < quorum {
    			// We couldn't gather enough for quorum
    			break
    		}
    
    		var latest xlMetaV2ShallowVersion
    		if consistent {
    			// All had the same signature, easy.
    			latest = tops[0]
    			merged = append(merged, latest)
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
Back to top