Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for Directories (0.25 sec)

  1. cmd/test-utils_test.go

    func getRandomDisks(n int) ([]string, error) {
    	var erasureDisks []string
    	for i := 0; i < n; i++ {
    		path, err := os.MkdirTemp(globalTestTmpDir, "minio-")
    		if err != nil {
    			// Remove directories created so far.
    			removeRoots(erasureDisks)
    			return nil, err
    		}
    		erasureDisks = append(erasureDisks, path)
    	}
    	return erasureDisks, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		return &sysDir{
    			"/lib/ndb",
    			[]string{
    				"common",
    				"local",
    			},
    		}
    	case "wasip1":
    		// wasmtime has issues resolving symbolic links that are often present
    		// in directories like /etc/group below (e.g. private/etc/group on OSX).
    		// For this reason we use files in the Go source tree instead.
    		return &sysDir{
    			runtime.GOROOT(),
    			[]string{
    				"go.env",
    				"LICENSE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Changing the default test report and results directories
    ====
    include::sample[dir="snippets/java/customDirs/kotlin",files="build.gradle.kts[tags=custom-report-dirs]"]
    include::sample[dir="snippets/java/customDirs/groovy",files="build.gradle[tags=custom-report-dirs]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    	goTool       string
    	goos         string // Target GOOS
    	goarch       string // Target GOARCH
    	cgoEnabled   bool
    	goExperiment string
    	goDebug      string
    
    	// dirs are the directories to look for *.go files in.
    	// TODO(bradfitz): just use all directories?
    	dirs = []string{".", "ken", "chan", "interface", "syntax", "dwarf", "fixedbugs", "codegen", "runtime", "abi", "typeparam", "typeparam/mdempsky", "arenas"}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	}
    }
    
    func removeAll(dir string) error {
    	// module cache has 0444 directories;
    	// make them writable in order to remove content.
    	filepath.WalkDir(dir, func(path string, info fs.DirEntry, err error) error {
    		// chmod not only directories, but also things that we couldn't even stat
    		// due to permission errors: they may also be unreadable directories.
    		if err != nil || info.IsDir() {
    			os.Chmod(path, 0777)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * Provides access to methods to create various kinds of model objects.
         *
         * @since 4.0
         */
        ObjectFactory getObjects();
    
        /**
         * Provides access to various important directories for this project.
         *
         * @since 4.1
         */
        ProjectLayout getLayout();
    
        /**
         * Creates a directory and returns a file pointing to it.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[changes_8.1]]
    == Upgrading from 8.0 and earlier
    
    [[cache_marking]]
    === CACHEDIR.TAG files are created in global cache directories
    Gradle now emits a `CACHEDIR.TAG` file in some global cache directories, as specified in <<directory_layout#dir:gradle_user_home:cache_marking>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    	return expandGoroot(fname)
    }
    
    // writeDirFileTables emits the portion of the DWARF line table
    // prologue containing the include directories and file names,
    // described in section 6.2.4 of the DWARF 4 standard. It walks the
    // filepaths for the unit to discover any common directories, which
    // are emitted to the directory table first, then the file table is
    // emitted after that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// directory exists. Similarly, `TF_NOT_FOUND` is not be returned, as the
      /// missing directory entry and all its descendants will be created by the
      /// plugin.
      ///
      /// DEFAULT IMPLEMENTATION: Creates directories one by one. Needs
      /// `path_exists`, `is_directory`, and `create_dir`.
      void (*recursively_create_dir)(const TF_Filesystem* filesystem,
                                     const char* path, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	"cgo",
    	"ebnflint",
    	"goapi",
    	"gofix",
    	"goinstall",
    	"gomake",
    	"gopack",
    	"gopprof",
    	"gotest",
    	"gotype",
    	"govet",
    	"goyacc",
    	"quietgcc",
    }
    
    // Unreleased directories (relative to $GOROOT) that should
    // not be in release branches.
    var unreleased = []string{
    	"src/cmd/newlink",
    	"src/cmd/objwriter",
    	"src/debug/goobj",
    	"src/old",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top