Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 923 for Mounts (0.11 sec)

  1. pkg/kubelet/container/runtime.go

    	Name  string
    	Value string
    }
    
    // Mount represents a volume mount.
    type Mount struct {
    	// Name of the volume mount.
    	// TODO(yifan): Remove this field, as this is not representing the unique name of the mount,
    	// but the volume name only.
    	Name string
    	// Path of the mount within the container.
    	ContainerPath string
    	// Path of the mount on the host.
    	HostPath string
    	// Whether the mount is read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi.go

    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    	// corruption.
    	paths, err := ioutil.GetReliableMountRefs(mounter, mountPath)
    	if io.IsInconsistentReadError(err) {
    		klog.Errorf("Failed to read mount refs from /proc/mounts for %s: %s", mountPath, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    	if err != nil {
    		return nil, err
    	} else if devOpts == nil {
    		return opts, nil
    	}
    	opts.Devices = append(opts.Devices, devOpts.Devices...)
    	opts.Mounts = append(opts.Mounts, devOpts.Mounts...)
    	opts.Envs = append(opts.Envs, devOpts.Envs...)
    	opts.Annotations = append(opts.Annotations, devOpts.Annotations...)
    	opts.CDIDevices = append(opts.CDIDevices, devOpts.CDIDevices...)
    	return opts, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/events.md

    ## Sub Applications
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	// namespace. Each pod then mounts a random set of size `sharedConfigMapsPerPod`
    	// from that set. sharedConfigMapsPerPod is used if greater.
    	sharedConfigMapsPerNamespace int
    	// sharedSecretsPerNamespaces defines number of shared secrets in a given
    	// namespace. Each pod then mounts a random set of size `sharedSecretsPerPod`
    	// from that set. sharedSecretsPerPod is used if greater.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/events.md

    ## Unteranwendungen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. cmd/endpoint.go

    func (l EndpointServerPools) HTTPS() bool {
    	return l[0].Endpoints.HTTPS()
    }
    
    // NEndpoints - returns number of endpoints
    func (l EndpointServerPools) NEndpoints() (count int) {
    	for _, ep := range l {
    		count += len(ep.Endpoints)
    	}
    	return count
    }
    
    // GridHosts will return all peers, including local.
    // in websocket grid compatible format, The local peer
    // is returned as a separate string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi_util.go

    	var counter int
    	for _, c := range contents {
    		if !c.IsDir() || c.Name() == config.DefaultKubeletVolumeDevicesDirName {
    			continue
    		}
    
    		mounts, err := ioutil.ReadDir(filepath.Join(dir, c.Name()))
    		if err != nil {
    			return 0, err
    		}
    
    		for _, m := range mounts {
    			volumeMount := m.Name()
    			prefix := portal + "-" + iqn
    			if strings.HasPrefix(volumeMount, prefix) {
    				counter++
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  9. ci/official/README.md

    # Recommended: Configure Docker. (Linux only)
    #
    #   TF uses hub.docker.com/r/tensorflow/build containers for CI,
    #   and scripts on Linux create a persistent container called "tf"
    #   which mounts your TensorFlow directory into the container.
    #
    #   Important: because the container is persistent, you cannot change TFCI
    #   variables in between script executions. To forcibly remove the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	mountedVolume := operationexecutor.MountedVolume{
    		PodName: volume.podName,
    		// VolumeName should be generated by `GetUniqueVolumeNameFromSpec` or `GetUniqueVolumeNameFromSpecWithPod`.
    		// However, since we don't have the volume information in asw when cleanup mounts, it doesn't matter what we put here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top