Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for fileSystem (0.48 sec)

  1. src/cmd/go/internal/modindex/read.go

    type Module struct {
    	modroot string
    	d       *decoder
    	n       int // number of packages
    }
    
    // moduleHash returns an ActionID corresponding to the state of the module
    // located at filesystem path modroot.
    func moduleHash(modroot string, ismodcache bool) (cache.ActionID, error) {
    	// We expect modules stored within the module cache to be checksummed and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. cni/README.md

    # Istio CNI Node Agent
    
    The Istio CNI Node Agent is responsible for several things
    
    - Install an Istio CNI plugin binary on each node's filesystem, updating that node's CNI config in e.g (`/etc/cni/net.d`), and watching the config and binary paths to reinstall if things are modified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    	// over path prefixes is only O(P × k) with maximum path depth k. For
    	// large projects both M and P may be very large (note that M ≤ P), but k
    	// will tend to remain smallish (if for no other reason than filesystem
    	// path limitations).
    	//
    	// We perform this iteration either one or two times. If mg is initially nil,
    	// then we first attempt to load the package using only the main module and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. cmd/server-main.go

      {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} DIR{65...128}
    
    DIR:
      DIR points to a directory on a filesystem. When you want to combine
      multiple drives into a single large system, pass one directory per
      filesystem separated by space. You may also use a '...' convention
      to abbreviate the directory arguments. Remote directories in a
      distributed setup are encoded as HTTP(s) URIs.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/expand/expand_controller.go

    			// PVC will be enqueued under 2 circumstances
    			// 1. User has increased PVC's request capacity --> volume needs to be expanded
    			// 2. PVC status capacity has been expanded --> claim's bound PV has likely recently gone through filesystem resize, so remove AnnPreResizeCapacity annotation from PV
    			if newReq.Cmp(oldReq) > 0 || newCap.Cmp(oldCap) > 0 {
    				expc.enqueuePVC(new)
    			}
    		},
    		DeleteFunc: expc.enqueuePVC,
    	})
    
    	return expc, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager.go

    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	utilstore "k8s.io/kubernetes/pkg/kubelet/util/store"
    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    // length for the user namespace to create (65536).
    const userNsLength = (1 << 16)
    
    // Create a new map when we removed enough pods to avoid memory leaks
    // since Go maps never free memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

            relocatedJarCreator = new RuntimeShadedJarCreator(
                progressLoggerFactory,
                new ImplementationDependencyRelocator(RuntimeShadedJarType.API),
                new ClasspathWalker(TestFiles.fileSystem()),
                new DefaultClasspathBuilder(TestFiles.tmpDirTemporaryFileProvider(tmpDir.createDir("tmp")))
            )
        }
    
        def "creates JAR file for input directory"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    5. <<workerexecutor,`WorkerExecutor`>> - Allows a task to run work in parallel.
    6. <<filesystemoperations,`FileSystemOperations`>> - Allows a task to run operations on the filesystem such as deleting files, copying files or syncing directories.
    7. <<archiveoperations,`ArchiveOperations`>> - Allows a task to run operations on archive files such as ZIP or TAR files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/install.go

    	// value to set the node at that path to.
    	Set []string
    	// ManifestsPath is a path to a ManifestsPath and profiles directory in the local filesystem with a release tgz.
    	ManifestsPath string
    	// Revision is the Istio control plane revision the command targets.
    	Revision string
    }
    
    func (a *InstallArgs) String() string {
    	var b strings.Builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    		// the oldname error because that's what we did historically.
    		// However, if the old name and new name are not the same, yet
    		// they refer to the same file, it implies a case-only
    		// rename on a case-insensitive filesystem, which is ok.
    		if ofi, err := Lstat(oldname); err != nil {
    			if pe, ok := err.(*PathError); ok {
    				err = pe.Err
    			}
    			return &LinkError{"rename", oldname, newname, err}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top