Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 206 for Directories (0.56 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    // evictPodLogsDirectories evicts all evictable pod logs directories. Pod logs directories
    // are evictable if there are no corresponding pods.
    func (cgc *containerGC) evictPodLogsDirectories(ctx context.Context, allSourcesReady bool) error {
    	osInterface := cgc.manager.osInterface
    	podLogsDirectory := cgc.manager.podLogsDirectory
    	if allSourcesReady {
    		// Only remove pod logs directories when all sources are ready.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    [sidebar]
    _Training level_: **Intermediate** +
    _Reading time_: **35 minutes**
    
    The introduction covers:
    
    <<gradle_directories.adoc#gradle_directories,Part 1.>> Gradle Directories +
    <<intro_multi_project_builds.adoc#intro_multi_project_builds,Part 2.>> Multi-Project Builds +
    <<build_lifecycle.adoc#build_lifecycle,Part 3.>> Gradle Build Lifecycle +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/net/http/fs.go

    //
    // Note that Dir could expose sensitive files and directories. Dir will follow
    // symlinks pointing out of the directory tree, which can be especially dangerous
    // if serving from a directory in which users are able to create arbitrary symlinks.
    // Dir will also allow access to files and directories starting with a period,
    // which could expose sensitive directories like .git or sensitive files like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    in z.go is imported as "baz", not as "foo/vendor/baz".
    
    Code in vendor directories deeper in the source tree shadows
    code in higher directories. Within the subtree rooted at foo, an import
    of "crash/bang" resolves to "foo/vendor/crash/bang", not the
    top-level "crash/bang".
    
    Code in vendor directories is not subject to import path
    checking (see 'go help importpath').
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

            if (dirs.isEmpty()) {
                return InstallCheck.failure(format("Gradle distribution '%s' does not contain any directories. Expected to find exactly 1 directory.", distributionDescription));
            }
            if (dirs.size() != 1) {
                return InstallCheck.failure(format("Gradle distribution '%s' contains too many directories. Expected to find exactly 1 directory.", distributionDescription));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         * If some versioned directories of the JAR haven't been processed, then these directories must contain presiding (overriding) resource with the same name but with
         * {@code NOT_TRANSFORMED.asBytes()} as body.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

    import java.util.ArrayList;
    import java.util.Deque;
    import java.util.List;
    
    /**
     * An immutable set of directory trees. Intended to be use to efficiently determine whether a particular file is contained in a set of directories or not.
     */
    // TODO Make this into an interface once we can migrate to Java 8+.
    public abstract class FileHierarchySet {
        /**
         * Checks if the given file is contained in the set.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/patches/patches.go

    	}
    
    	return &patchSet{
    		targetName: targetName,
    		patchType:  patchType,
    		patches:    patches,
    	}, nil
    }
    
    // getPatchSetsFromPath walks a path, ignores sub-directories and non-patch files, and
    // returns a list of patchFile objects.
    func getPatchSetsFromPath(targetPath string, knownTargets []string, output io.Writer) ([]*patchSet, []string, []string, error) {
    	patchFiles := []string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    				kubeadmconstants.KubeletKubeConfigFileName,
    				"foo",
    			},
    			verifyExists: []string{
    				"manifests",
    				"pki",
    				"foo",
    			},
    		},
    		"preserve hidden files and directories": {
    			setupDirs: []string{
    				"manifests",
    				"pki",
    				".mydir",
    			},
    			setupFiles: []string{
    				"manifests/etcd.yaml",
    				"manifests/kube-apiserver.yaml",
    				"pki/ca.pem",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/os/types_windows.go

    		m |= 0444
    	} else {
    		m |= 0666
    	}
    
    	// Windows reports the FILE_ATTRIBUTE_DIRECTORY bit for reparse points
    	// that refer to directories, such as symlinks and mount points.
    	// However, we follow symlink POSIX semantics and do not set the mode bits.
    	// This allows users to walk directories without following links
    	// by just calling "fi, err := os.Lstat(name); err == nil && fi.IsDir()".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top