Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for agosto (0.09 sec)

  1. src/cmd/go/internal/work/exec.go

    	if err == nil && len(data) > len(id) {
    		stats := strings.Split(string(data[:len(data)-len(id)]), "\x00")
    		if len(stats)%2 != 0 {
    			goto Miss
    		}
    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    	Miss:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    			rinfo.ReplicationStatus = replication.Completed
    			rinfo.ReplicationAction = replicateNone
    			goto applyAction
    		}
    		// if target returns error other than NoSuchKey, defer replication attempt
    		if minio.IsNetworkOrHostDown(cerr, true) && !globalBucketTargetSys.isOffline(tgt.EndpointURL()) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    				c.script[0] = cue - remaining
    				time.Sleep(remaining)
    				return 0, syscall.ETIMEDOUT
    			}
    		}
    		c.script = c.script[1:]
    		time.Sleep(cue)
    		goto restart
    
    	case string:
    		n = copy(b, cue)
    		// If cue is too big for the buffer, leave the end for the next Read.
    		if len(cue) > n {
    			c.script[0] = cue[n:]
    		} else {
    			c.script = c.script[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top