Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 242 for bucketOf (0.17 sec)

  1. src/maps/maps_test.go

    		case 1:
    			// Add more entries to make it 2 buckets
    			// 1 entry already
    			// 7 more fill up 1 bucket
    			// 1 more to grow to 2 buckets
    			for i := 0; i < 7+1; i++ {
    				m[K{float64(i) + 1}] = V{}
    			}
    		case 2:
    			// Capture the map mid-grow
    			// 1 entry already
    			// 7 more fill up 1 bucket
    			// 5 more (13 total) fill up 2 buckets
    			// 13 more (26 total) fill up 4 buckets
    			// 1 more to start the 4->8 bucket grow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. cmd/mrf.go

    			if !ok {
    				return
    			}
    
    			// We might land at .metacache, .trash, .multipart
    			// no need to heal them skip, only when bucket
    			// is '.minio.sys'
    			if u.bucket == minioMetaBucket {
    				// No MRF needed for temporary objects
    				if wildcard.Match("buckets/*/.metacache/*", u.object) {
    					continue
    				}
    				if wildcard.Match("tmp/*", u.object) {
    					continue
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. cmd/event-notification.go

    					continue
    				}
    			}
    			arns = append(arns, targetID.ToARN(region).String())
    		}
    	}
    
    	return arns
    }
    
    // Loads notification policies for all buckets into EventNotifier.
    func (evnot *EventNotifier) set(bucket BucketInfo, meta BucketMetadata) {
    	config := meta.notificationConfig
    	if config == nil {
    		return
    	}
    	region := globalSite.Region()
    	config.SetRegion(region)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. cmd/peer-rest-common.go

    	peerRESTMethodDevNull               = "/devnull"
    	peerRESTMethodNetperf               = "/netperf"
    	peerRESTMethodGetReplicationMRF     = "/getreplicationmrf"
    )
    
    const (
    	peerRESTBucket          = "bucket"
    	peerRESTBuckets         = "buckets"
    	peerRESTUser            = "user"
    	peerRESTGroup           = "group"
    	peerRESTUserTemp        = "user-temp"
    	peerRESTPolicy          = "policy"
    	peerRESTUserOrGroup     = "user-or-group"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. cmd/background-heal-ops.go

    	"github.com/minio/pkg/v3/env"
    )
    
    // healTask represents what to heal along with options
    //
    //	path: '/' =>  Heal disk formats along with metadata
    //	path: 'bucket/' or '/bucket/' => Heal bucket
    //	path: 'bucket/object' => Heal object
    type healTask struct {
    	bucket    string
    	object    string
    	versionID string
    	opts      madmin.HealOpts
    	// Healing response will be sent here
    	respCh chan healResult
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. cmd/veeam-sos-api.go

    }
    
    func veeamSOSAPIHeadObject(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, error) {
    	gr, err := veeamSOSAPIGetObject(ctx, bucket, object, nil, opts)
    	if gr != nil {
    		gr.Close()
    		return gr.ObjInfo, nil
    	}
    	return ObjectInfo{}, err
    }
    
    func veeamSOSAPIGetObject(ctx context.Context, bucket, object string, rs *HTTPRangeSpec, opts ObjectOptions) (gr *GetObjectReader, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. docs/bucket/lifecycle/DESIGN.md

    Lifecycle transition functionality provided in [bucket lifecycle guide](https://github.com/minio/minio/master/docs/bucket/lifecycle/README.md) allows tiering of content from MinIO object store to public clouds or other MinIO clusters.
    
    Transition tiers can be added to MinIO using `mc admin tier add` command to associate a `gcs`, `s3` or `azure` bucket or prefix path on a bucket to the tier name.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableMapEntry.java

        return null;
      }
    
      @CheckForNull
      ImmutableMapEntry<K, V> getNextInValueBucket() {
        return null;
      }
    
      /**
       * Returns true if this entry has no bucket links and can safely be reused as a terminal entry in
       * a bucket in another map.
       */
      boolean isReusable() {
        return true;
      }
    
      static class NonTerminalImmutableMapEntry<K, V> extends ImmutableMapEntry<K, V> {
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pkg/monitoring/monitortest/test.go

    		}
    		return nil
    	}
    }
    
    // Buckets asserts a distribution has the number of buckets
    func Buckets(count int) func(any) error {
    	return func(f any) error {
    		d := f.(*dto.Histogram)
    		if len(d.Bucket) != count {
    			return fmt.Errorf("want %v buckets, got %v", count, len(d.Bucket))
    		}
    		return nil
    	}
    }
    
    func AtLeast(want float64) func(any) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/metrics/metrics.go

    			Subsystem: "apiserver",
    			Name:      "request_body_size_bytes",
    			Help:      "Apiserver request body size in bytes broken out by resource and verb.",
    			// we use 0.05 KB as the smallest bucket with 0.1 KB increments up to the
    			// apiserver limit.
    			Buckets:        metrics.LinearBuckets(50000, 100000, 31),
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"resource", "verb"},
    	)
    )
    
    var registerMetrics sync.Once
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 02:06:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top