Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 153 for fileSystem (0.22 sec)

  1. cni/pkg/nodeagent/podcgroupns.go

    }
    
    // Cgroup represents a linux cgroup.
    type Cgroup struct {
    	HierarchyID    string
    	ControllerList string
    	GroupPath      string
    }
    
    // GetCGroups returns a slice of cgroups for pid using fs for filesystem calls.
    //
    // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    // this function will return an error if every cgroup does not meet that format.
    //
    // For more information, see:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    }
    
    func TestUnshare(t *testing.T) {
    	path := "/proc/net/dev"
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("kernel doesn't support proc filesystem")
    		}
    		if os.IsPermission(err) {
    			t.Skip("unable to test proc filesystem due to permissions")
    		}
    		t.Fatal(err)
    	}
    
    	b, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	orig := strings.TrimSpace(string(b))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

        def factory = new DefaultFileCollectionFactory(TestFiles.pathToFileResolver(tmpDir.testDirectory), TestFiles.taskDependencyFactory(), TestFiles.directoryFileTreeFactory(), Stub(Factory), Stub(PropertyHost), TestFiles.fileSystem())
    
        def "lazily queries contents of collection created from MinimalFileSet"() {
            def contents = Mock(MinimalFileSet)
            def file = new File("a")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. src/os/types_windows.go

    			// regular files: they continue to support random-access reads and writes
    			// of persistent data, and they shouldn't add unexpected latency or
    			// unavailability in the way that a network filesystem might.
    			//
    			// Go programs may use ModeIrregular to filter out unusual files (such as
    			// raw device files on Linux, POSIX FIFO special files, and so on), so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		return
    	}
    	// volumeSpec.ReadOnly is the value that determines if volume could be formatted when being mounted.
    	// This is the same flag that determines filesystem resizing behaviour for offline resizing and hence
    	// we should use it here. This value comes from Pod.spec.volumes.persistentVolumeClaim.readOnly.
    	if volumeSpec.ReadOnly {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/uninstall.go

    	// value to set the node at that path to.
    	set []string
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    	manifestsPath string
    	// verbose generates verbose output.
    	verbose bool
    }
    
    const (
    	AllResourcesRemovedWarning = "All Istio resources will be pruned from the cluster\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager_test.go

    	tests := []struct {
    		name            string
    		pvMode, podMode v1.PersistentVolumeMode
    		expectMount     bool
    		expectError     bool
    	}{
    		{
    			name:        "filesystem volume",
    			pvMode:      v1.PersistentVolumeFilesystem,
    			podMode:     v1.PersistentVolumeFilesystem,
    			expectMount: true,
    			expectError: false,
    		},
    		{
    			name:        "block volume",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    			return
    		}
    	})
    	to.VModule = append(to.VModule, vmodule...)
    	return err
    }
    
    // Creates a new filesystem watcher and adds watches for the config file.
    func (o *Options) initWatcher() error {
    	fswatcher := filesystem.NewFsnotifyWatcher()
    	err := fswatcher.Init(o.eventHandler, o.errorHandler)
    	if err != nil {
    		return err
    	}
    	err = fswatcher.AddWatch(o.ConfigFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher.go

    	"k8s.io/apimachinery/pkg/watch"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/kubernetes"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    	"k8s.io/utils/clock"
    )
    
    const globalMountInGlobalPath = "globalmount"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    The repository can be based on a binary repository product (e.g. Artifactory or Nexus) or a directory structure in the filesystem.
    For more information, see <<declaring_repositories.adoc#declaring-repositories,Declaring Repositories>>.
    
    [[sub:terminology_resolution_rule]]
    == Resolution rule
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top