Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 502 for memory (0.06 sec)

  1. cmd/metrics-v3-system-memory.go

    var (
    	memTotalMD     = NewGaugeMD(memTotal, "Total memory on the node")
    	memUsedMD      = NewGaugeMD(memUsed, "Used memory on the node")
    	memUsedPercMD  = NewGaugeMD(memUsedPerc, "Used memory percentage on the node")
    	memFreeMD      = NewGaugeMD(memFree, "Free memory on the node")
    	memBuffersMD   = NewGaugeMD(memBuffers, "Buffers memory on the node")
    	memCacheMD     = NewGaugeMD(memCache, "Cache memory on the node")
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-04-17 05:10
    - 2.2K bytes
    - Viewed (0)
  2. src/arena/arena.go

    This functionality in this package is mostly captured in the Arena type.
    Arenas allocate large chunks of memory for Go values, so they're likely to
    be inefficient for allocating only small amounts of small Go values. They're
    best used in bulk, on the order of MiB of memory allocated on each use.
    
    Note that by allowing for this limited form of manual memory allocation
    that use-after-free bugs are possible with regular Go values. This package
    Registered: 2025-05-27 11:13
    - Last Modified: 2022-10-12 20:23
    - 4.3K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_node_mem_buffers_avg`   | Buffers memory on the node (avg).         |
    | `minio_node_mem_buffers_max`   | Buffers memory on the node (max).         |
    | `minio_node_mem_cache`         | Cache memory on the node.                 |
    | `minio_node_mem_cache_avg`     | Cache memory on the node (avg).           |
    | `minio_node_mem_cache_max`     | Cache memory on the node (max).           |
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-11-06 15:44
    - 43.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/io/ContentCache.java

    import java.util.logging.Logger;
    
    /**
     * ContentCache is a class that provides a way to cache content either in memory or in a file.
     * It implements the Closeable interface to ensure that resources are properly released.
     *
     * <p>This class supports two types of content caching:
     * <ul>
     *   <li>In-memory caching using a byte array</li>
     *   <li>File-based caching using a File object</li>
     * </ul>
     *
    Registered: 2025-05-24 08:59
    - Last Modified: 2025-05-10 01:44
    - 3.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/files/profile-demo.yaml

    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
      autoscaleEnabled: false
      traceSampling: 100
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/files/profile-demo.yaml

    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
      autoscaleEnabled: false
      traceSampling: 100
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
  7. manifests/charts/base/files/profile-demo.yaml

    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
      autoscaleEnabled: false
      traceSampling: 100
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/files/profile-demo.yaml

    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
      autoscaleEnabled: false
      traceSampling: 100
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.4K bytes
    - Viewed (0)
  9. manifests/helm-profiles/demo.yaml

    cni:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    ztunnel:
      resources:
        requests:
          cpu: 10m
          memory: 40Mi
    
    global:
      proxy:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      waypoint:
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
    
    pilot:
      autoscaleEnabled: false
      traceSampling: 100
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-12-10 01:56
    - 2.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

     * backing store (e.g. file system, database, memory).
     * <p>
     * This is mainly used to parse files into objects such as Maven projects,
     * models, settings, or toolchains. The source implementation handles
     * all the details of accessing the underlying content while providing
     * a uniform API to consumers.
     * <p>
     * Sources can represent:
     * <ul>
     *   <li>Local filesystem files</li>
     *   <li>In-memory content</li>
     *   <li>Database entries</li>
    Registered: 2025-05-24 08:56
    - Last Modified: 2025-01-29 09:46
    - 4K bytes
    - Viewed (0)
Back to top