Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Mount_info (0.17 sec)

  1. pkg/volume/util/hostutil/hostutil_linux.go

    }
    
    func findMountInfo(path, mountInfoPath string) (mount.MountInfo, error) {
    	infos, err := mount.ParseMountInfo(mountInfoPath)
    	if err != nil {
    		return mount.MountInfo{}, err
    	}
    
    	// process /proc/xxx/mountinfo in backward order and find the first mount
    	// point that is prefix of 'path' - that's the mount where path resides
    	var info *mount.MountInfo
    	for i := len(infos) - 1; i >= 0; i-- {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. LICENSES/vendor/github.com/moby/sys/mountinfo/LICENSE

    = vendor/github.com/moby/sys/mountinfo licensed under: =
    
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 24 16:39:50 UTC 2020
    - 11.2K bytes
    - Viewed (0)
  3. go.mod

    	github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible // indirect
    	github.com/mitchellh/go-wordwrap v1.0.1 // indirect
    	github.com/moby/spdystream v0.2.0 // indirect
    	github.com/moby/sys/mountinfo v0.6.2 // indirect
    	github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect
    	github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
    	github.com/modern-go/reflect2 v1.0.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. cmd/endpoint.go

    	"strings"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/mountinfo"
    	"github.com/minio/pkg/v3/env"
    	xnet "github.com/minio/pkg/v3/net"
    	"golang.org/x/exp/slices"
    )
    
    // EndpointType - enum for endpoint type.
    type EndpointType int
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top