Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for inode (0.05 sec)

  1. cmd/metrics-resource.go

    		total:             "Total memory on the node",
    		memUsed:           "Used memory on the node",
    		memUsedPerc:       "Used memory percentage on the node",
    		memFree:           "Free memory on the node",
    		memShared:         "Shared memory on the node",
    		memBuffers:        "Buffers memory on the node",
    		memCache:          "Cache memory on the node",
    		memAvailable:      "Available memory on the node",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare.go

    	_, err := sb.WriteString(s)
    	if err != nil {
    		log.Error(err.Error())
    	}
    }
    
    // IsLeafNode reports whether the given node is a leaf, assuming internal nodes can only be maps or slices.
    func IsLeafNode(node any) bool {
    	return !util.IsMap(node) && !util.IsSlice(node)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_node_mem_available`     | Available memory on the node.             |
    | `minio_node_mem_available_avg` | Available memory on the node (avg).       |
    | `minio_node_mem_available_max` | Available memory on the node (max).       |
    | `minio_node_mem_buffers`       | Buffers memory on the node.               |
    | `minio_node_mem_buffers_avg`   | Buffers memory on the node (avg).         |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. 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` |
    | `minio_system_memory_total`      | `gauge` | Total memory on the node           | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_mips64.go

    	Sysname    [65]int8
    	Nodename   [65]int8
    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree     int32
    	Pad_cgo_0 [4]byte
    	Tinode    uint64
    	Fname     [6]int8
    	Fpack     [6]int8
    	Pad_cgo_1 [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  6. src/syscall/ztypes_linux_ppc64.go

    	Nodename   [65]uint8
    	Release    [65]uint8
    	Version    [65]uint8
    	Machine    [65]uint8
    	Domainname [65]uint8
    }
    
    type Ustat_t struct {
    	Tfree     int32
    	Pad_cgo_0 [4]byte
    	Tinode    uint64
    	Fname     [6]uint8
    	Fpack     [6]uint8
    	Pad_cgo_1 [4]byte
    }
    
    type EpollEvent struct {
    	Events  uint32
    	X_padFd int32
    	Fd      int32
    	Pad     int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_riscv64.go

    type Utsname struct {
    	Sysname    [65]uint8
    	Nodename   [65]uint8
    	Release    [65]uint8
    	Version    [65]uint8
    	Machine    [65]uint8
    	Domainname [65]uint8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint64
    	Fname  [6]uint8
    	Fpack  [6]uint8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_s390x.go

    	Sysname    [65]uint8
    	Nodename   [65]uint8
    	Release    [65]uint8
    	Version    [65]uint8
    	Machine    [65]uint8
    	Domainname [65]uint8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	_      [4]byte
    	Tinode uint64
    	Fname  [6]uint8
    	Fpack  [6]uint8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. src/net/textproto/reader_test.go

    	if got, want := totalAlloc/count, uint64(32768); got > want {
    		t.Fatalf("ReadMIMEHeader allocated %v bytes, want < %v", got, want)
    	}
    }
    
    type readResponseTest struct {
    	in       string
    	inCode   int
    	wantCode int
    	wantMsg  string
    }
    
    var readResponseTests = []readResponseTest{
    	{"230-Anonymous access granted, restrictions apply\n" +
    		"Read the file README.txt,\n" +
    		"230  please",
    		23,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

        throw rethrown
      } catch (_: Exception) {
      }
    }
    
    /**
     * Returns true if file streams can be manipulated independently of their paths. This is typically
     * true for systems like Mac, Unix, and Linux that use inodes in their file system interface. It is
     * typically false on Windows.
     *
     * If this returns false we won't permit simultaneous reads and writes. When writes commit we need
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top