Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 206 for Directories (0.31 sec)

  1. src/internal/coverage/pods/pods.go

    // meta-data file. Pods are intended to simplify processing of
    // coverage output files in the case where we have several coverage
    // output directories containing output files derived from more
    // than one instrumented executable. In the case where the files that
    // make up a pod are spread out across multiple directories, each
    // element of the "Origins" field below will be populated with the
    // index of the originating directory for the corresponding counter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. cmd/metrics-v3-scanner.go

    	scannerBucketScansStartedMD = NewCounterMD(scannerBucketScansStarted,
    		"Total number of bucket scans started since server start")
    	scannerDirectoriesScannedMD = NewCounterMD(scannerDirectoriesScanned,
    		"Total number of directories scanned since server start")
    	scannerObjectsScannedMD = NewCounterMD(scannerObjectsScanned,
    		"Total number of unique objects scanned since server start")
    	scannerVersionsScannedMD = NewCounterMD(scannerVersionsScanned,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. .github/bot_config.yml

           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the %PATH% environment variable.
           * Refer [windows setup guide](https://www.tensorflow.org/install/gpu#windows_setup).
         * If you have above configuration and using _**Ubuntu/Linux**_ platform -
           * Try adding the CUDA, CUPTI, and cuDNN installation directories to the $LD_LIBRARY_PATH environment variable.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/file-temp/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Utilities for working with temporary files & directories"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 859 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    }
    ----
    
    [[sec:deleting_files_example]]
    == Deleting files and directories
    
    Deleting files and directories in Gradle involves removing them from the file system.
    
    === Using the `Delete` task
    
    You can easily delete files and directories using the link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete] task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/controlplane/volumes.go

    	// On some systems where we host-mount /etc/ssl/certs, it is also required to mount additional directories.
    	// This is needed due to symlinks pointing from files in /etc/ssl/certs to these directories.
    	for _, caCertsExtraVolumePath := range caCertsExtraVolumePaths {
    		if isExtraVolumeMountNeeded(caCertsExtraVolumePath) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

    import org.apache.maven.api.JavaPathType;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Information about the modules contained in a path element.
     * The path element may be a JAR file or a directory. Directories may use either package hierarchy
     * or module hierarchy, but not module source hierarchy. The latter is excluded because this class
     * is for path elements of compiled codes.
     */
    class PathModularization {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/testing/fstest/mapfs.go

    	"strings"
    	"time"
    )
    
    // A MapFS is a simple in-memory file system for use in tests,
    // represented as a map from path names (arguments to Open)
    // to information about the files or directories they represent.
    //
    // The map need not include parent directories for files contained
    // in the map; those will be synthesized if needed.
    // But a directory can still be included by setting the [MapFile.Mode]'s [fs.ModeDir] bit;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/GlobalCache.java

     * of informing all the infrastructure about changes to it.
     */
    @ServiceScope(Scope.Global.class)
    public interface GlobalCache {
        /**
         * Returns the root directories of the global cache.
         */
        List<File> getGlobalCacheRoots();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |Map of files (`Map<String, File>`)
    |
    |X
    
    |`DirectoryProperty`
    |`Directory`
    |X
    |X
    
    |Iterable of directories (`Property<Iterable<File>`)
    |Iterable of directories (`Iterable<File>`)
    |
    |X
    
    |Map of directories (`MapProperty<String, File>`)
    |Map of directories (`Map<String, File>`)
    |
    |X
    |===
    
    Notes:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
Back to top