Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,019 for versions (0.18 sec)

  1. cmd/data-usage-cache.go

    			res[szInt.name] = count
    		}
    	}
    	return res
    }
    
    // add a version count to the histogram.
    func (h *versionsHistogram) add(versions uint64) {
    	// Fetch the histogram interval corresponding
    	// to the passed object size.
    	for i, interval := range ObjectsVersionCountIntervals[:] {
    		if versions >= uint64(interval.start) && versions <= uint64(interval.end) {
    			h[i]++
    			break
    		}
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
  2. cmd/erasure-server-pool-rebalance.go

    				// any other versions that have already expired.
    				remainingVersions := len(fivs.Versions) - expired
    				if version.Deleted && remainingVersions == 1 {
    					rebalanced++
    					continue
    				}
    
    				versionID := version.VersionID
    				if versionID == "" {
    					versionID = nullVersionID
    				}
    
    				if version.Deleted {
    					_, err := z.DeleteObject(ctx,
    						bucket,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 19:29:28 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle.go

    	DeleteRestoredAction
    	// DeleteRestoredVersionAction deletes a particular version that was temporarily restored
    	DeleteRestoredVersionAction
    	// DeleteAllVersionsAction deletes all versions when an object expires
    	DeleteAllVersionsAction
    	// DelMarkerDeleteAllVersionsAction deletes all versions when an object with delete marker as latest version expires
    	DelMarkerDeleteAllVersionsAction
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool-decom.go

    			// to create the appropriate stack.
    			versionsSorter(fivs.Versions).reverse()
    
    			var decommissioned, expired int
    			for _, version := range fivs.Versions {
    				stopFn := globalDecommissionMetrics.log(decomMetricDecommissionObject, idx, bi.Name, version.Name, version.VersionID)
    				// Apply lifecycle rules on the objects that are expired.
    				if filterLifecycle(bi.Name, version.Name, version) {
    					expired++
    					decommissioned++
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 41.5K bytes
    - Viewed (1)
  5. internal/config/api/api.go

    	EnvAPISyncEvents                  = "MINIO_API_SYNC_EVENTS" // default "off"
    	EnvAPIObjectMaxVersions           = "MINIO_API_OBJECT_MAX_VERSIONS"
    	EnvAPIObjectMaxVersionsLegacy     = "_MINIO_OBJECT_MAX_VERSIONS"
    )
    
    // Deprecated key and ENVs
    const (
    	apiReadyDeadline            = "ready_deadline"
    	apiReplicationWorkers       = "replication_workers"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 01:08:07 GMT 2024
    - 11.1K bytes
    - Viewed (1)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

    
    10. Versions of the License
    
    10.1. New Versions
    
          Mozilla Foundation is the license steward. Except as provided in Section
          10.3, no one other than the license steward has the right to modify or
          publish new versions of this License. Each version will be given a
          distinguishing version number.
    
    10.2. Effect of New Versions
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

            Collection<String> versions = new LinkedHashSet<>();
    
            if ((repoMetadata != null) && (repoMetadata.getVersioning() != null)) {
                versions.addAll(repoMetadata.getVersioning().getVersions());
            }
    
            versions.addAll(availableVersions);
    
            List<ArtifactVersion> artifactVersions = new ArrayList<>(versions.size());
    
            for (String version : versions) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         *         of this version range and the specified version range if both version ranges have
         *         restrictions. Otherwise, the restrictions on the returned range will be empty.
         *         </p>
         *         <p>
         *         The recommended version of the returned version range will be the recommended version of
         *         this version range, provided that ranges falls within the intersected restrictions. If
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/errwrap/LICENSE

    
    10. Versions of the License
    
    10.1. New Versions
    
          Mozilla Foundation is the license steward. Except as provided in Section
          10.3, no one other than the license steward has the right to modify or
          publish new versions of this License. Each version will be given a
          distinguishing version number.
    
    10.2. Effect of New Versions
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/hcl/LICENSE

    
    10. Versions of the License
    
    10.1. New Versions
    
          Mozilla Foundation is the license steward. Except as provided in Section
          10.3, no one other than the license steward has the right to modify or
          publish new versions of this License. Each version will be given a
          distinguishing version number.
    
    10.2. Effect of New Versions
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
Back to top