Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for distribution (0.4 sec)

  1. apache-maven/pom.xml

      </parent>
    
      <artifactId>apache-maven</artifactId>
      <packaging>pom</packaging>
    
      <name>Apache Maven Distribution</name>
      <description>The Apache Maven distribution, source and binary, in zip and tar.gz formats.</description>
    
      <properties>
        <distributionFileName>${distributionId}-${project.version}</distributionFileName>
      </properties>
    
      <dependencies>
        <dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  2. CREDITS

    This program and the accompanying materials
    are made available under the terms of the Eclipse Public License v2.0
    and Eclipse Distribution License v1.0 which accompany this distribution.
    
    The Eclipse Public License is available at
      https://www.eclipse.org/legal/epl-2.0/
    and the Eclipse Distribution License is available at
      http://www.eclipse.org/org/documents/edl-v10.php.
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  3. .github/workflows/ci.yml

          - name: 'Set up JDK ${{ matrix.java }}'
            uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
    
            with:
              java-version: ${{ matrix.java }}
              distribution: 'zulu'
              cache: 'maven'
          - name: 'Install'
            shell: bash
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:33:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    | `minio_cluster_usage_objects_size_distribution`          | `gauge` | Cluster object size distribution                               | `range` |
    | `minio_cluster_usage_objects_version_count_distribution` | `gauge` | Cluster object version count distribution                      | `range` |
    
    ### `/cluster/usage/buckets` 
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 26K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_cluster_capacity_usable_total_bytes`  | Total usable capacity online in the cluster.                   |
    | `minio_cluster_objects_size_distribution`    | Distribution of object sizes across a cluster                  |
    | `minio_cluster_objects_version_distribution` | Distribution of object versions across a cluster               |
    | `minio_cluster_usage_object_total`           | Total number of objects in a cluster                           |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  6. cmd/erasure-healing.go

    	}
    
    	latestDisks := shuffleDisks(availableDisks, latestMeta.Erasure.Distribution)
    
    	if !latestMeta.Deleted && len(latestMeta.Erasure.Distribution) != len(outDatedDisks) {
    		err := fmt.Errorf("unexpected file distribution (%v) from outdated disks (%v), looks like backend disks have been manually modified refusing to heal %s/%s(%s)",
    			latestMeta.Erasure.Distribution, outDatedDisks, bucket, object, versionID)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 33.1K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/unrecognized-jline-3.26.1.txt

    notice, this list of conditions and the following disclaimer
    in the documentation and/or other materials provided with
    the distribution.
    
    Neither the name of JLine nor the names of its contributors
    may be used to endorse or promote products derived from this
    software without specific prior written permission.
    
    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 09:13:56 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    			}
    		}
    		return fi, nil, nil, toObjectErr(err, bucket, object)
    	}
    
    	if !fi.Deleted && len(fi.Erasure.Distribution) != len(onlineDisks) {
    		err := fmt.Errorf("unexpected file distribution (%v) from online disks (%v), looks like backend disks have been manually modified refusing to heal %s/%s(%s)",
    			fi.Erasure.Distribution, onlineDisks, bucket, object, opts.VersionID)
    		storageLogOnceIf(ctx, err, "get-object-file-info-manually-modified")
    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)
  9. cmd/metrics-v2.go

    	usageInfo   MetricName = "usage_info"
    	versionInfo MetricName = "version_info"
    
    	sizeDistribution    = "size_distribution"
    	versionDistribution = "version_distribution"
    	ttfbDistribution    = "seconds_distribution"
    	ttlbDistribution    = "ttlb_seconds_distribution"
    
    	lastActivityTime = "last_activity_nano_seconds"
    	startTime        = "starttime_seconds"
    	upTime           = "uptime_seconds"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  10. cmd/erasure-metadata.go

    		return true
    	}
    	dataBlocks := fi.Erasure.DataBlocks
    	parityBlocks := fi.Erasure.ParityBlocks
    	correctIndexes := (fi.Erasure.Index > 0 &&
    		fi.Erasure.Index <= dataBlocks+parityBlocks &&
    		len(fi.Erasure.Distribution) == (dataBlocks+parityBlocks))
    	return ((dataBlocks >= parityBlocks) &&
    		(dataBlocks > 0) && (parityBlocks >= 0) &&
    		correctIndexes)
    }
    
    // ToObjectInfo - Converts metadata to object info.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 19.2K bytes
    - Viewed (1)
Back to top