Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Flarity (0.57 sec)

  1. cmd/erasure-object.go

    		if m.IsValid() {
    			tags["size"] = m.Size
    			tags["mtime"] = m.ModTime.Format(http.TimeFormat)
    			tags["data"] = m.Erasure.DataBlocks
    			tags["parity"] = m.Erasure.ParityBlocks
    		} else {
    			tags["invalid-meta"] = true
    			tags["data"] = er.setDriveCount - er.defaultParityCount
    			tags["parity"] = er.defaultParityCount
    		}
    
    		// count the number of offline disks
    		offline := 0
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
  2. cmd/erasure-server-pool.go

    		// If storage class is not set during startup, default values are used
    		// -- Default for Reduced Redundancy Storage class is, parity = 2
    		// -- Default for Standard Storage class is, parity = 2 - disks 4, 5
    		// -- Default for Standard Storage class is, parity = 3 - disks 6, 7
    		// -- Default for Standard Storage class is, parity = 4 - disks 8 to 16
    		if commonParityDrives == 0 {
    			commonParityDrives, err = ecDrivesNoConfig(ep.DrivesPerSet)
    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)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/collect/Multimaps.java

          SortedSetMultimap<K, V> multimap) {
        return (Map<K, SortedSet<V>>) (Map<K, ?>) multimap.asMap();
      }
    
      /**
       * Returns {@link Multimap#asMap multimap.asMap()}. This is provided for parity with the other
       * more strongly-typed {@code asMap()} implementations.
       *
       * @since 15.0
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

        * randomly select which nodes are members of Kubernetes External Load Balancers.
    * Clarify supported version skew between masters, nodes, and clients ([#25087](https://github.com/kubernetes/kubernetes/pull/25087), [@ihmccreery](https://github.com/ihmccreery))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
Back to top