Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for unmounted (0.12 sec)

  1. pkg/util/filesystem/util_windows.go

    	// for the file (using FSCTL_GET_REPARSE_POINT) and checking for reparse tag: reparseTagSocket
    	// does NOT work in 1809 if the socket file is created within a bind mounted directory by a container
    	// and the FSCTL is issued in the host by the kubelet.
    
    	// If the file does not exist, it cannot be a Unix domain socket.
    	if _, err := os.Stat(filePath); os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil_windows.go

    	if err != nil {
    		klog.V(4).Infof("GetMountRefs failed for mount path %q: %v", mountPath, err)
    		return "", err
    	}
    	if len(refs) == 0 {
    		return "", fmt.Errorf("directory %s is not mounted", mountPath)
    	}
    	basemountPath := mount.NormalizeWindowsPath(pluginMountDir)
    	for _, ref := range refs {
    		if strings.Contains(ref, basemountPath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/pod_cache.go

    		nspathInContainer := filepath.Join(hostMountsPath, nspath)
    		ns, err := OpenNetns(nspathInContainer)
    		if err != nil {
    			err = fmt.Errorf("failed to open netns: %w. Make sure that the netns host path %s is mounted in under %s in the container", err, nspath, hostMountsPath)
    			log.Error(err.Error())
    		}
    		return ns, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

    // ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors
    // (root certificates).
    //
    // ClusterTrustBundle objects are considered to be readable by any authenticated
    // user in the cluster, because they can be mounted by pods using the
    // `clusterTrustBundle` projection.  All service accounts have read access to
    // ClusterTrustBundles by default.  Users who only have namespace-level access
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager.go

    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    	// GetQOSContainersInfo returns the names of top level QoS containers
    	GetQOSContainersInfo() QOSContainersInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/readwriter.go

    	}
    
    	// The CA cert is required for updating kubeconfig files.
    	// For local CA renewal, the local CA on disk could have changed, thus a reload is needed.
    	// For CSR renewal we assume the same CA on disk is mounted for usage with KCM's
    	// '--cluster-signing-cert-file' flag.
    	certificatePath, _ := pkiutil.PathsForCertAndKey(rw.certificateDir, rw.baseName)
    	caCerts, err := certutil.CertsFromFile(certificatePath)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 01 03:09:53 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/make.bash

    	echo
    	echo 'Run sudo apt-get remove binutils-gold.'
    	echo
    	exit 1
    fi
    
    # Test for bad SELinux.
    # On Fedora 16 the selinux filesystem is mounted at /sys/fs/selinux,
    # so loop through the possible selinux mount points.
    for se_mount in /selinux /sys/fs/selinux
    do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/context.go

    //
    // It is recommended for implementations to not allow for more than 30 case
    // ignorables as lookahead (analogous to the limit in norm) and to use state if
    // unbounded lookahead is needed for cased runes.
    type context struct {
    	dst, src []byte
    	atEOF    bool
    
    	pDst int // pDst points past the last written rune in dst.
    	pSrc int // pSrc points to the start of the currently scanned rune.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top