Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for minCodes (0.24 sec)

  1. pkg/volume/util/fsquota/quota_linux.go

    	applier := getApplier(path)
    	// No applier means directory is not under quota management
    	if applier == nil {
    		return nil, nil
    	}
    	inodes, err := applier.GetInodes(path, dirQuotaMap[path])
    	if err != nil {
    		return nil, err
    	}
    	return resource.NewQuantity(inodes, resource.DecimalSI), nil
    }
    
    // ClearQuota -- remove the quota assigned to a directory
    func ClearQuota(m mount.Interface, path string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. pkg/volume/metrics_du_test.go

    		t.Errorf("Unexpected Used for directory with file.  Expected %v, got %d.", e, a)
    	}
    
    	// create a hardlink and expect inodes count to stay the same
    	previousInodes := actual.InodesUsed.Value()
    	err = os.Link(filepath.Join(tmpDir, "f1"), filepath.Join(tmpDir, "f2"))
    	if err != nil {
    		t.Errorf("Unexpected error when creating hard link %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. pkg/volume/util/fs/fs_windows_test.go

    	}
    	if capacity <= 0 {
    		t.Errorf("Info() capacity should be greater than 0, got %v", capacity)
    	}
    	if usage <= 0 {
    		t.Errorf("Info() got usage should be greater than 0, got %v", usage)
    	}
    
    	// inodes will always be zero for Windows
    	if inodesTotal != 0 {
    		t.Errorf("Info() inodesTotal = %v, want %v", inodeUsage, 0)
    	}
    	if inodesFree != 0 {
    		t.Errorf("Info() inodesFree = %v, want %v", inodesFree, 0)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    					},
    					MaxReplicas: 10,
    				},
    				Status: autoscaling.HorizontalPodAutoscalerStatus{
    					CurrentReplicas: 4,
    					DesiredReplicas: 5,
    				},
    			},
    			// Columns: Name, Reference, Targets, MinPods, MaxPods, Replicas, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"some-hpa", "ReplicationController/some-rc", "<none>", "<unset>", int64(10), int64(4), "<unknown>"}}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. cmd/metrics-resource.go

    		percUtil:          "Percentage of time the disk was busy",
    		usedBytes:         "Used bytes on a drive",
    		totalBytes:        "Total bytes on a drive",
    		usedInodes:        "Total inodes used on a drive",
    		totalInodes:       "Total inodes on a drive",
    		cpuUser:           "CPU user time",
    		cpuSystem:         "CPU system time",
    		cpuIdle:           "CPU idle time",
    		cpuIOWait:         "CPU ioWait time",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/preemption/preemption.go

    // 5. If there are still ties, node with the latest start time of all highest priority victims is picked.
    // 6. If there are still ties, the first such node is picked (sort of randomly).
    // The 'minNodes1' and 'minNodes2' are being reused here to save the memory
    // allocation and garbage collection time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    | `minio_node_drive_used_bytes`        | Used bytes on a drive.                                   |
    | `minio_node_drive_total_inodes`      | Total inodes on a drive.                                 |
    | `minio_node_drive_used_inodes`       | Total inodes used on a drive.                            |
    | `minio_node_drive_reads_per_sec`     | Reads per second on a drive.                             |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  8. docs/metrics/v3.md

    | `minio_system_drive_free_inodes`               | `gauge`   | Total free inodes on a drive                                       | `drive,set_index,drive_index,pool_index,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)
  9. pkg/volume/csi/csi_client.go

    		Capacity:   resource.NewQuantity(int64(0), resource.BinarySI),
    		Available:  resource.NewQuantity(int64(0), resource.BinarySI),
    		InodesUsed: resource.NewQuantity(int64(0), resource.BinarySI),
    		Inodes:     resource.NewQuantity(int64(0), resource.BinarySI),
    		InodesFree: resource.NewQuantity(int64(0), resource.BinarySI),
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.CSIVolumeHealth) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  10. pkg/volume/testing/testing.go

    	available := a.Available == b.Available
    	capacity := a.Capacity == b.Capacity
    	used := a.Used == b.Used
    	inodes := a.Inodes == b.Inodes
    	inodesFree := a.InodesFree == b.InodesFree
    	inodesUsed := a.InodesUsed == b.InodesUsed
    	return available && capacity && used && inodes && inodesFree && inodesUsed
    }
    
    func ContainsAccessMode(modes []v1.PersistentVolumeAccessMode, mode v1.PersistentVolumeAccessMode) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top