Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 219 for directory1 (0.14 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

        - org.gradle.dependency.bundling = external
        - org.gradle.verificationtype    = main-sources
    Artifacts
        - $sourceMainJavaPath (artifactType = directory)
        - $sourceMainResourcePath (artifactType = directory)
    
    --------------------------------------------------
    Variant runtimeElements
    --------------------------------------------------
    Runtime elements for the 'main' feature.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Remember that a deep filter like this has the side effect of copying the directory structure below `reports` and the files.
    If you want to copy the files without the directory structure, you must use an explicit `fileTree(_dir_) { _includes_ }.files` expression.
    
    [[sec:copying_directories_example]]
    === Copying directory hierarchies
    
    You may need to copy files as well as the directory structure in which they reside.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    }
    
    func TestXLStorageIsDirEmpty(t *testing.T) {
    	tmp := t.TempDir()
    
    	// Should give false on non-existent directory.
    	dir1 := slashpath.Join(tmp, "non-existent-directory")
    	if isDirEmpty(dir1, true) {
    		t.Error("expected false for non-existent directory, got true")
    	}
    
    	// Should give false for not-a-directory.
    	dir2 := slashpath.Join(tmp, "file")
    	err := os.WriteFile(dir2, []byte("hello"), 0o777)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  4. src/go/build/build.go

    	Root          string   // root of Go tree where this package lives
    	SrcRoot       string   // package source root directory ("" if unknown)
    	PkgRoot       string   // package install root directory ("" if unknown)
    	PkgTargetRoot string   // architecture dependent install root directory ("" if unknown)
    	BinDir        string   // command install directory ("" if unknown)
    	Goroot        bool     // package found in Go root
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        Project getRootProject();
    
        /**
         * <p>Returns the root directory of this project. The root directory is the project directory of the root
         * project.</p>
         *
         * @return The root directory. Never returns null.
         */
        File getRootDir();
    
        /**
         * <p>Returns the build directory of this project.  The build directory is the directory which all artifacts are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

                         TF_Status* status);
    
      /// Creates the directory specified by `path` and all needed ancestors.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if directory was created.
      ///   * Must set `status` to `TF_FAILED_PRECONDITION` if `path` is invalid or
      ///     if it exists but is not a directory.
      ///   * Might use any other error value for `status` to signal other errors.
      ///
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. src/os/os_test.go

    		}
    		names[count] = d[0]
    		count++
    	}
    	return names[0:count]
    }
    
    // Check that reading a directory one entry at a time gives the same result
    // as reading it all at once.
    func TestReaddirnamesOneAtATime(t *testing.T) {
    	t.Parallel()
    
    	// big directory that doesn't change often.
    	dir := "/usr/bin"
    	switch runtime.GOOS {
    	case "android":
    		dir = "/system/bin"
    	case "ios", "wasip1":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * `@InputFile` - verifies that the property has a value and that the path corresponds to a file (not a directory) that exists.
    * `@InputDirectory` - same as for `@InputFile`, except the path must correspond to a directory.
    * `@OutputDirectory` - verifies that the path doesn’t match a file and also creates the directory if it doesn’t already exist.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

          $tmp_dir = 'C:\k8s_tmp'
          New-Item -Force -ItemType 'directory' $tmp_dir | Out-Null
          $filename = 'csi-proxy.exe'
          $urls = "${env:CSI_PROXY_STORAGE_PATH}/${env:CSI_PROXY_VERSION}/$filename"
          MustDownload-File -OutFile $tmp_dir\$filename -URLs $urls
          Move-Item -Force $tmp_dir\$filename ${env:NODE_DIR}\$filename
          # Clean up the temporary directory
          Remove-Item -Force -Recurse $tmp_dir
        }
      }
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	return tg.doGrepCount(match, &tg.stdout) + tg.doGrepCount(match, &tg.stderr)
    }
    
    // creatingTemp records that the test plans to create a temporary file
    // or directory. If the file or directory exists already, it will be
    // removed. When the test completes, the file or directory will be
    // removed if it exists.
    func (tg *testgoData) creatingTemp(path string) {
    	tg.t.Helper()
    	if filepath.IsAbs(path) && !strings.HasPrefix(path, tg.tempdir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top