Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for xBuckets (0.21 sec)

  1. cmd/erasure-server-pool-rebalance.go

    	now := time.Now()
    	for idx := range z.serverPools {
    		r.PoolStats[idx] = &rebalanceStats{
    			Buckets:           make([]string, len(buckets)),
    			RebalancedBuckets: make([]string, 0, len(buckets)),
    			InitFreeSpace:     diskStats[idx].AvailableSpace,
    			InitCapacity:      diskStats[idx].TotalSpace,
    		}
    		copy(r.PoolStats[idx].Buckets, buckets)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  2. cmd/testdata/undeleteable-object.tgz

    ‘k¤Sizek¥MTimeÓ ÉŸþ¥¹ °§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¤etagÙ 10ead207166f316fb066¬content-type¸application/octet-stream¡v Îtª€³ ¤nullÄ2JÃ[kG_ € ‰” ÎJ6 'Dí—¬ÍüÉm·äaBʧ ‚¡v £pls‘„¢id multisitea/data/disterasure/xl3/.minio.sys/buckets/.usage.json/xl.meta XL2 Æ u Ä$•Ä Ó É ŸBÏÀÄ ·Ö 5 Å Iƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ ç(3ÿ aL(± @Ò ¯9ï¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDistœ ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘Ñ !ªPartASizes‘Ñ !¤SizeÑ !¥MTimeÓ É ŸBÏÀ§MetaSys ¼x-minio-internal-inline-dataÄ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 26 00:31:12 UTC 2024
    - 8.7M bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                for (Attribute<?> attribute : buckets.providedAttributes) {
                    rows.add(createProvidedRow(attributes, selected, attribute));
                }
                for (Map.Entry<Attribute<?>, AttributeMatchDetails> entry : buckets.bothAttributes.entrySet()) {
                    rows.add(createMatchBasedRow(attributes, selected, entry));
                }
                for (Attribute<?> attribute : buckets.requestedAttributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. cmd/global-heal.go

    func (er *erasureObjects) healErasureSet(ctx context.Context, buckets []string, tracker *healingTracker) error {
    	scanMode := madmin.HealNormalScan
    
    	// Make sure to copy since `buckets slice`
    	// is modified in place by tracker.
    	healBuckets := make([]string, len(buckets))
    	copy(healBuckets, buckets)
    
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    		return errServerNotInitialized
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

        return func.emitError()
               << "Output 2nd dimension should be the num of hash seeds.";
      }
    
      auto buckets =
          mlir::dyn_cast_or_null<IntegerAttr>(attr.getAttrs().get("buckets"));
      if (!buckets) {
        return func.emitError() << "'buckets' attribute is not set or not int";
      }
    
      return success();
    }
    
    LogicalResult CreateSgnnProjectionCustomOption(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. cmd/object_api_suite_test.go

    	if err != nil {
    		t.Fatalf("%s: <ERROR> %s", instanceType, err)
    	}
    	buckets, err := obj.ListBuckets(context.Background(), BucketOptions{})
    	if err != nil {
    		t.Fatalf("%s: <ERROR> %s", instanceType, err)
    	}
    	if len(buckets) != 2 {
    		t.Errorf("%s: Expected number of bucket to be `%d`, but instead found `%d`", instanceType, 2, len(buckets))
    	}
    
    	if buckets[0].Name != "bucket1" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    				}
    				return info, errSRBackendIssue(err)
    			}
    			buckets = append(buckets, bi)
    		} else {
    			buckets, err = objAPI.ListBuckets(ctx, BucketOptions{Deleted: opts.ShowDeleted})
    			if err != nil {
    				return info, errSRBackendIssue(err)
    			}
    		}
    		info.Buckets = make(map[string]madmin.SRBucketInfo, len(buckets))
    		for _, bucketInfo := range buckets {
    			bucket := bucketInfo.Name
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. cmd/metrics-v3-api.go

    // This includes bucket level S3 HTTP metrics and S3 network in/out metrics.
    func loadBucketAPIHTTPMetrics(ctx context.Context, m MetricValues, _ *metricsCache, buckets []string) error {
    	if len(buckets) == 0 {
    		return nil
    	}
    	for bucket, inOut := range globalBucketConnStats.getBucketS3InOutBytes(buckets) {
    		recvBytes := inOut.In
    		if recvBytes > 0 {
    			m.Set(apiTrafficSentBytes, float64(recvBytes), "bucket", bucket, "type", "s3")
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. internal/crypto/sse-s3.go

    // keys.
    //
    // The metadata, buckets and objects slices must have the same length.
    func (s3 sses3) UnsealObjectKeys(ctx context.Context, k *kms.KMS, metadata []map[string]string, buckets, objects []string) ([]ObjectKey, error) {
    	if k == nil {
    		return nil, Errorf("KMS not configured")
    	}
    
    	if len(metadata) != len(buckets) || len(metadata) != len(objects) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. cmd/metrics-v3.go

    		ilmMG,
    		scannerMG,
    		auditMG,
    		loggerWebhookMG,
    	}
    
    	// Bucket metrics are special, they always include the bucket label. These
    	// metrics required a list of buckets to be passed to the loader, and the list
    	// of buckets is not known until the request is made. So we keep a separate
    	// map for bucket metrics and handle them specially.
    
    	// Add the serverName and poolIndex labels to all non-cluster metrics.
    	//
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top