Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Jest (0.17 sec)

  1. cmd/object-handlers_test.go

    			if test.fault == MissingUploadID {
    				uploadID = "upload1"
    			}
    			// constructing a v4 signed HTTP request.
    			reqV4, err = newTestSignedRequestV4(http.MethodPut,
    				getPutObjectPartURL("", bucketName, test.objectName, uploadID, test.partNumber),
    				int64(len(test.content)), bytes.NewReader([]byte(test.content)), test.accessKey, test.secretKey, nil)
    			if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  2. cmd/storage-rest-client.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/rest"
    	xnet "github.com/minio/pkg/v2/net"
    	xbufio "github.com/philhofer/fwd"
    	"github.com/tinylib/msgp/msgp"
    )
    
    func isNetworkError(err error) bool {
    	if err == nil {
    		return false
    	}
    
    	if nerr, ok := err.(*rest.NetworkError); ok {
    		if down := xnet.IsNetworkOrHostDown(nerr.Err, false); down {
    			return true
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  3. cmd/storage-rest-server.go

    		_, err := io.ReadFull(respBody, tmp[:])
    		if err != nil {
    			return err
    		}
    		// Check if we have a response ready or a filler byte.
    		switch tmp[0] {
    		case 0:
    			// 0 is unbuffered, copy the rest.
    			_, err := io.CopyBuffer(w, respBody, buf)
    			if err == io.EOF {
    				return nil
    			}
    			return err
    		case 1:
    			errorText, err := io.ReadAll(respBody)
    			if err != nil {
    				return err
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    * 🔧 Fix Ruff configuration unintentionally enabling and re-disabling mccabe complexity check. PR [#10893](https://github.com/tiangolo/fastapi/pull/10893) by [@jiridanek](https://github.com/jiridanek).
    * ✅ Re-enable test in `tests/test_tutorial/test_header_params/test_tutorial003.py` after fix in Starlette. PR [#10904](https://github.com/tiangolo/fastapi/pull/10904) by [@ooknimm](https://github.com/ooknimm).
    
    ### Docs
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Apr 28 00:28:00 GMT 2024
    - 385.5K bytes
    - Viewed (1)
  5. cmd/xl-storage.go

    	s.Unlock()
    	return diskID, nil
    }
    
    // Make a volume entry.
    func (s *xlStorage) SetDiskID(id string) {
    	// NO-OP for xlStorage as it is handled either by xlStorageDiskIDCheck{} for local disks or
    	// storage rest server for remote disks.
    }
    
    func (s *xlStorage) MakeVolBulk(ctx context.Context, volumes ...string) error {
    	for _, volume := range volumes {
    		err := s.MakeVol(ctx, volume)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  6. helm-releases/minio-5.2.0.tgz

    sh) package manager. ## Prerequisites - Helm cli with Kubernetes cluster configured. - PV provisioner support in the underlying infrastructure. (We recommend using <https://github.com/minio/direct-csi>) - Use Kubernetes version v1.19 and later for best experience. ## Configure MinIO Helm repo ```bash helm repo add minio https://charts.min.io/ ``` ### Installing the Chart Install this chart using: ```bash helm install --namespace minio --set rootUser=rootuser,rootPassword=rootpass123 --generate-name...
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top