Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for used (0.15 sec)

  1. docs/metrics/prometheus/list.md

    | `minio_node_mem_used`          | Used memory on the node.                  |
    | `minio_node_mem_used_avg`      | Used memory on the node (avg).            |
    | `minio_node_mem_used_max`      | Used memory on the node (max).            |
    | `minio_node_mem_used_perc`     | Used memory percentage on the node.       |
    | `minio_node_mem_used_perc_avg` | Used memory percentage on the node (avg). |
    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)
  2. cmd/metrics-v3-system-drive.go

    	kib        = float64(1 << 10)
    )
    
    var allDriveLabels = []string{driveL, poolIndexL, setIndexL, driveIndexL}
    
    const (
    	driveUsedBytes               = "used_bytes"
    	driveFreeBytes               = "free_bytes"
    	driveTotalBytes              = "total_bytes"
    	driveUsedInodes              = "used_inodes"
    	driveFreeInodes              = "free_inodes"
    	driveTotalInodes             = "total_inodes"
    	driveTimeoutErrorsTotal      = "timeout_errors_total"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  3. docs/metrics/v3.md

    |----------------------------------|---------|------------------------------------|----------|
    | `minio_system_memory_used`       | `gauge` | Used memory on the node            | `server` |
    | `minio_system_memory_used_perc`  | `gauge` | Used memory percentage on the node | `server` |
    | `minio_system_memory_free`       | `gauge` | Free memory on the node            | `server` |
    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)
  4. cmd/storage-rest-server.go

    		doneCh = nil
    	}, &closeNotifier{rc: r.Body, done: bodyDoneCh}
    }
    
    // keepHTTPResponseAlive can be used to avoid timeouts with long storage
    // operations, such as bitrot verification or data usage scanning.
    // keepHTTPResponseAlive may NOT be used until the request body has been read,
    // use keepHTTPReqResponseAlive instead.
    // Every 10 seconds a space character is sent.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  5. errors.go

    	ErrInvalidValueOfLength = errors.New("invalid association values, length doesn't match")
    	// ErrPreloadNotAllowed preload is not allowed when count is used
    	ErrPreloadNotAllowed = errors.New("preload is not allowed when count is used")
    	// ErrDuplicatedKey occurs when there is a unique key constraint violation
    	ErrDuplicatedKey = errors.New("duplicated key not allowed")
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Fri Apr 26 02:53:17 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. cmd/utils.go

    // OpenIDClientAppParams - contains openID client application params, used in
    // testing.
    type OpenIDClientAppParams struct {
    	ClientID, ClientSecret, ProviderURL, RedirectURL string
    }
    
    // MockOpenIDTestUserInteraction - tries to login to dex using provided credentials.
    // It performs the user's browser interaction to login and retrieves the auth
    // code from dex and exchanges it for a JWT.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 31.3K bytes
    - Viewed (0)
  7. maven-bom/pom.xml

      <dependencyManagement>
        <!-- Not included:
             - apache-maven, as it delivers the binaries
             - maven-compat, only used by apache-maven distributions to support older releases
             - maven-slf4j-provider, only used by apache-maven distributions
             - maven-wrapper, only used by apache-maven-wrapper distributions -->
        <dependencies>
          <dependency>
            <groupId>org.apache.maven</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/unrecognized-jline-3.26.1.txt

    OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
    AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
    IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    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)
  9. cmd/globals.go

    	globalRootDiskThreshold uint64
    
    	// Used for collecting stats for netperf
    	globalNetPerfMinDuration     = time.Second * 10
    	globalNetPerfRX              netPerfRX
    	globalSiteNetPerfRX          netPerfRX
    	globalObjectPerfBucket       = "minio-perf-test-tmp-bucket"
    	globalObjectPerfUserMetadata = "X-Amz-Meta-Minio-Object-Perf" // Clients can set this to bypass S3 API service freeze. Used by object pref tests.
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/2-unique.md

    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 13:37:36 GMT 2024
    - 579 bytes
    - Viewed (0)
Back to top