Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for userspace (0.04 sec)

  1. guava/src/com/google/common/io/ByteStreams.java

       *       are files or sockets. This performs zero copies - the bytes never enter userspace.
       *   <li>Use mmap(2) or equivalent. Requires that either the input channel or the output channel
       *       have file descriptors. Bytes are copied from the file into a kernel buffer, then directly
       *       into the other buffer (userspace). Note that if the file is very large, a naive
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  2. docs/chroot/README.md

    ```
    
    Bind your `proc` mount to the target chroot directory
    
    ```
    sudo mount --bind /proc /mnt/export/${USER}/proc
    ```
    
    ## 3. Run Standalone MinIO in Chroot
    
    ### GNU/Linux
    
    ```sh
    sudo chroot --userspec username:group /mnt/export/${USER} /bin/minio --config-dir=/.minio server /data
    
    Endpoint:  http://192.168.1.92:9000  http://65.19.167.92:9000
    AccessKey: MVPSPBW4NP2CMV1W3TXD
    SecretKey: X3RKxEeFOI8InuNWoPsbG+XEVoaJVCqbvxe+PTOa
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java

                buffer.putInt(512);
    
                // When
                fileFsSizeInfo.decode(buffer.array(), 0, 24);
                long usedSpace = fileFsSizeInfo.getCapacity() - fileFsSizeInfo.getFree();
    
                // Then
                assertEquals(7000L * 8 * 512, usedSpace);
            }
    
            @Test
            @DisplayName("Should support percentage calculations")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java

                buffer.putInt(512);
    
                // When
                fileFsFullSizeInfo.decode(buffer.array(), 0, 32);
                long usedSpace = fileFsFullSizeInfo.getCapacity() - fileFsFullSizeInfo.getFree();
    
                // Then
                assertEquals(7000L * 8 * 512, usedSpace);
            }
    
            @Test
            @DisplayName("Should support percentage calculations")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  5. cmd/erasure.go

    				disksInfo[index] = di
    				return nil
    			}
    			info, err := disks[index].DiskInfo(context.TODO(), DiskInfoOptions{Metrics: metrics})
    			di.DrivePath = info.MountPath
    			di.TotalSpace = info.Total
    			di.UsedSpace = info.Used
    			di.AvailableSpace = info.Free
    			di.UUID = info.ID
    			di.Major = info.Major
    			di.Minor = info.Minor
    			di.RootDisk = info.RootDisk
    			di.Healing = info.Healing
    			di.Scanning = info.Scanning
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    				erasureSet.DeleteMarkersCount = dataUsageInfo.DeleteMarkersTotalCount
    				erasureSet.Usage = dataUsageInfo.ObjectsTotalSize
    			}
    		}
    		erasureSet.RawCapacity += d.TotalSpace
    		erasureSet.RawUsage += d.UsedSpace
    		if d.Healing {
    			erasureSet.HealDisks = 1
    		}
    		poolInfo[d.SetIndex] = erasureSet
    		poolsInfo[d.PoolIndex] = poolInfo
    	}
    	return poolsInfo, nil
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    		totalDrives := onlineDrives.Merge(offlineDrives)
    
    		for _, disk := range storageInfo.Disks {
    			metrics = append(metrics, MetricV2{
    				Description:    getNodeDriveUsedBytesMD(),
    				Value:          float64(disk.UsedSpace),
    				VariableLabels: map[string]string{"drive": disk.DrivePath},
    			})
    
    			metrics = append(metrics, MetricV2{
    				Description:    getNodeDriveFreeBytesMD(),
    				Value:          float64(disk.AvailableSpace),
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 133.4K bytes
    - Viewed (0)
Back to top