Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 79 for Flarity (0.19 sec)

  1. cmd/api-response.go

    }
    
    // ObjectInternalInfo contains some internal information about a given
    // object, it will printed in listing calls with enabled metadata.
    type ObjectInternalInfo struct {
    	K int // Data blocks
    	M int // Parity blocks
    }
    
    // Object container for object metadata
    type Object struct {
    	Key          string
    	LastModified string // time string of format "2006-01-02T15:04:05.000Z"
    	ETag         string
    	Size         int64
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 33.3K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                String path = ( (RequestWithPath) req ).getFullUNCPath();
                checkReferral(resp, path, ( (RequestWithPath) req ));
                // checkReferral always throws and exception but put break here for clarity
                break;
            case NtStatus.NT_STATUS_BUFFER_OVERFLOW:
                if ( resp instanceof Smb2ReadResponse ) {
                    break;
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. cmd/server-main.go

    		// Print a warning at the end of the startup banner so it is more noticeable
    		if newObject.BackendInfo().StandardSCParity == 0 {
    			warnings = append(warnings, color.YellowBold("- The standard parity is set to 0. This can lead to data loss."))
    		}
    		objAPI := newObjectLayerFn()
    		if objAPI != nil {
    			printStorageInfo(objAPI.StorageInfo(GlobalContext, true))
    		}
    		if len(warnings) > 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 33K bytes
    - Viewed (1)
  4. cmd/object-api-multipart_test.go

    	objectNames := []string{"minio-object-1.txt"}
    	uploadIDs := []string{}
    
    	globalStorageClass.Update(storageclass.Config{
    		RRS: storageclass.StorageClass{
    			Parity: 2,
    		},
    		Standard: storageclass.StorageClass{
    			Parity: 4,
    		},
    	})
    
    	// bucketnames[0].
    	// objectNames[0].
    	// uploadIds [0].
    	// Create bucket before initiating NewMultipartUpload.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    }
    
    // SetDriveCount returns the current drives per set.
    func (s *erasureSets) SetDriveCount() int {
    	return s.setDriveCount
    }
    
    // ParityCount returns the default parity count used while erasure
    // coding objects
    func (s *erasureSets) ParityCount() int {
    	return s.defaultParityCount
    }
    
    // StorageInfo - combines output of StorageInfo across all erasure coded object sets.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 37.5K bytes
    - Viewed (5)
  6. docs/en/docs/release-notes.md

    ### Upgrades
    
    * ⬆️ Upgrade Starlette range to allow 0.23.1. PR [#5980](https://github.com/tiangolo/fastapi/pull/5980) by [@tiangolo](https://github.com/tiangolo).
    
    ### Docs
    
    * ✏ Tweak wording to clarify `docs/en/docs/project-generation.md`. PR [#5930](https://github.com/tiangolo/fastapi/pull/5930) by [@chandra-deb](https://github.com/chandra-deb).
    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)
  7. cmd/erasure-healing_test.go

    	saveSC := globalStorageClass
    	defer func() {
    		globalStorageClass.Update(saveSC)
    	}()
    	globalStorageClass.Update(storageclass.Config{
    		Standard: storageclass.StorageClass{
    			Parity: 4,
    		},
    	})
    
    	nDisks := 16
    	fsDirs, err := getRandomDisks(nDisks)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	defer removeRoots(fsDirs)
    
    	// Everything is fine, should return nil
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Mar 27 15:10:40 GMT 2024
    - 47.6K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    	ErasureM           int               `json:"EcM" msg:"EcM"`                                  // Erasure data blocks
    	ErasureN           int               `json:"EcN" msg:"EcN"`                                  // Erasure parity blocks
    	ErasureBlockSize   int64             `json:"EcBSize" msg:"EcBSize"`                          // Erasure block size
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  9. cmd/xl-storage_test.go

    func TestXLStorageReadVersionLegacy(t *testing.T) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  10. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseCastArity: {
    		Code:           "ParseCastArity",
    		Description:    "The SQL expression CAST has incorrect arity.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseInvalidTypeParam: {
    		Code:           "ParseInvalidTypeParam",
    		Description:    "The SQL expression contains an invalid parameter value.",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
Back to top