Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 786 for directory1 (0.14 sec)

  1. src/io/fs/readdir.go

    // that provides an optimized implementation of [ReadDir].
    type ReadDirFS interface {
    	FS
    
    	// ReadDir reads the named directory
    	// and returns a list of directory entries sorted by filename.
    	ReadDir(name string) ([]DirEntry, error)
    }
    
    // ReadDir reads the named directory
    // and returns a list of directory entries sorted by filename.
    //
    // If fs implements [ReadDirFS], ReadDir calls fs.ReadDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

        }
    
        /**
         * Returns the directory to use as the user home directory.
         *
         * @return The home directory.
         */
        public File getGradleUserHomeDir() {
            return gradleUserHomeDir;
        }
    
        /**
         * Sets the directory to use as the user home directory. Set to null to use the default directory.
         *
         * @param gradleUserHomeDir The home directory. May be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_volumes.go

    			// directory to fail below.
    			// Errors for all removal operations have already been recorded, so don't add another
    			// one here.
    			continue
    		}
    
    		// Call RemoveAllOneFilesystem for remaining subdirs under the pod directory
    		podDir := kl.getPodDir(uid)
    		podSubdirs, err := os.ReadDir(podDir)
    		if err != nil {
    			errorPods++
    			klog.ErrorS(err, "Could not read directory", "path", podDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    absl::StatusOr<std::string> GetLocalTmpFileName();
    
    // Creates a temporary directory on an environment defined by the implementation
    // of `tsl::Env` and returns its path. Returns an InternalError status if
    // failed.
    absl::StatusOr<std::string> CreateTmpDir(tsl::Env* env);
    
    // Creates a temporary directory and returns its path. Returns an InternalError
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * to the module-path if it contains a {@code module-info.class}, or to the class-path otherwise.
         * For the test output directory, the rules are more complex and are governed by the fact that
         * Java does not accept the placement of two modules of the same name on the module-path.
         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_buildmod_reason_issue67587.txt

    cd thirteen
    ! go list -deps
    stderr 	'(Go version in go.mod is 1.13, so vendor directory was not used.)'
    
    cd ../unspecified
    ! go list -deps
    stderr 	'(Go version in go.mod is unspecified, so vendor directory was not used.)'
    
    -- thirteen/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- thirteen/go.mod --
    module example.com
    
    go 1.13
    -- thirteen/vendor/github.com/foo/bar/bar.go --
    package bar
    -- unspecified/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:54:40 UTC 2024
    - 572 bytes
    - Viewed (0)
  7. internal/logger/logrotate.go

    }
    
    // Options define configuration options for Writer
    type Options struct {
    	// Directory defines the directory where log files will be written to.
    	// If the directory does not exist, it will be created.
    	Directory string
    
    	// MaximumFileSize defines the maximum size of each log file in bytes.
    	MaximumFileSize int64
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/api/plugins/JvmTestSuitePluginIntegrationTest.groovy

            outputContains("""
    --------------------------------------------------
    Variant testResultsElementsForTest (i)
    --------------------------------------------------
    Directory containing binary results of running tests for the test Test Suite's test target.
    
    Capabilities
        - :Test:unspecified (default capability)
    Attributes
        - org.gradle.category              = verification
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-process-services/src/main/java/org/gradle/internal/installation/CurrentGradleInstallationLocator.java

                return null;
            }
        }
    
        /**
         * Returns the root directory of a distribution based on the code source of a JAR file. The JAR can either sit in the lib or plugins subdirectory. Returns null if distribution doesn't have
         * expected directory layout.
         *
         * The expected directory layout for JARs of a distribution looks as such:
         *
         * dist-root
         * |_ lib
         * |_ plugins
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir.go

    }
    
    // setupDir creates the directory with the default permissions specified by the perm constant.
    func (ed *emptyDir) setupDir(dir string) error {
    	// Create the directory if it doesn't already exist.
    	if err := os.MkdirAll(dir, perm); err != nil {
    		return err
    	}
    
    	// stat the directory to read permission bits
    	fileinfo, err := os.Lstat(dir)
    	if err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top