Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Goldis (0.2 sec)

  1. cmd/erasure.go

    					} else {
    						scannerLogIf(ctx, err)
    					}
    					// This ensures that we don't close
    					// bucketResults channel while the
    					// updates-collector goroutine still
    					// holds a reference to this.
    					wg.Wait()
    					continue
    				}
    
    				wg.Wait()
    				// Flatten for upstream, but save full state.
    				var root dataUsageEntry
    				if r := cache.root(); r != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 16K bytes
    - Viewed (1)
  2. doc/go_spec.html

    since Go source text is Unicode characters encoded in UTF-8, multiple
    UTF-8-encoded bytes may represent a single integer value.  For
    instance, the literal <code>'a'</code> holds a single byte representing
    a literal <code>a</code>, Unicode U+0061, value <code>0x61</code>, while
    <code>'รค'</code> holds two bytes (<code>0xc3</code> <code>0xa4</code>) representing
    a literal <code>a</code>-dieresis, U+00E4, value <code>0xe4</code>.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    		if len(result.Uploads) != 0 {
    			return z.serverPools[idx].NewMultipartUpload(ctx, bucket, object, opts)
    		}
    	}
    
    	// any parallel writes on the object will block for this poolIdx
    	// to return since this holds a read lock on the namespace.
    	idx, err := z.getPoolIdx(ctx, bucket, object, -1)
    	if err != nil {
    		return nil, err
    	}
    
    	return z.serverPools[idx].NewMultipartUpload(ctx, bucket, object, opts)
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
Back to top