Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for stringVar (0.28 sec)

  1. cmd/batch-handlers.go

    	return nil
    }
    
    //msgp:ignore batchJobMetrics
    type batchJobMetrics struct {
    	sync.RWMutex
    	metrics map[string]*batchJobInfo
    }
    
    //msgp:ignore batchJobMetric
    //go:generate stringer -type=batchJobMetric -trimprefix=batchJobMetric $GOFILE
    type batchJobMetric uint8
    
    const (
    	batchJobMetricReplication batchJobMetric = iota
    	batchJobMetricKeyRotation
    	batchJobMetricExpire
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    	RangeRequested   string `xml:"RangeRequested,omitempty" json:"RangeRequested,omitempty"`
    }
    
    // APIErrorCode type of error status.
    type APIErrorCode int
    
    //go:generate stringer -type=APIErrorCode -trimprefix=Err $GOFILE
    
    // Error codes, non exhaustive list - http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html
    const (
    	ErrNone APIErrorCode = iota
    	ErrAccessDenied
    	ErrBadDigest
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    	case osIsNotExist(err):
    		err = errDiskNotFound
    	case isSysErrTooLong(err):
    		err = errFileNameTooLong
    	case isSysErrIO(err):
    		err = errFaultyDisk
    	}
    
    	return di, err
    }
    
    // Implements stringer compatible interface.
    func (s *xlStorage) String() string {
    	return s.drivePath
    }
    
    func (s *xlStorage) Hostname() string {
    	return s.endpoint.Host
    }
    
    func (s *xlStorage) Endpoint() Endpoint {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			case 8:
    				return s.constInt64(n.Type(), i)
    			default:
    				s.Fatalf("bad integer size %d", n.Type().Size())
    				return nil
    			}
    		case constant.String:
    			i := constant.StringVal(u)
    			if i == "" {
    				return s.constEmptyString(n.Type())
    			}
    			return s.entryNewValue0A(ssa.OpConstString, n.Type(), ssa.StringToAux(i))
    		case constant.Bool:
    			return s.constBool(constant.BoolVal(u))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	wr.stream.flow.take(int32(len(wd.p)))
    	return wr, empty, 1
    }
    
    // String is for debugging only.
    func (wr http2FrameWriteRequest) String() string {
    	var des string
    	if s, ok := wr.write.(fmt.Stringer); ok {
    		des = s.String()
    	} else {
    		des = fmt.Sprintf("%T", wr.write)
    	}
    	return fmt.Sprintf("[FrameWriteRequest stream=%d, ch=%v, writer=%v]", wr.StreamID(), wr.done != nil, des)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top