Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,426 for directory1 (0.21 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.Directory.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 445 bytes
    - Viewed (0)
  2. src/io/fs/walk.go

    // the error from [fs.Stat].
    //
    // Second, if a directory's ReadDir method (see [ReadDirFile]) fails, WalkDir calls the
    // function with path set to the directory's path, d set to an
    // [DirEntry] describing the directory, and err set to the error from
    // ReadDir. In this second case, the function is called twice with the
    // path of the directory: the first call is before the directory read is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 08:50:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/README

    // license that can be found in the LICENSE file.
    
    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/InputDirectory.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying an input directory for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the directory location or contents
     * have changed.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 13:25:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

        /**
         * Makes sure that the given target is an empty directory.
         *
         * If target is...
         *
         * <ul>
         *     <li>a directory, then its contents are removed recursively,</li>
         *     <li>a file or a symlink, then it is deleted and a directory is created in its place,</li>
         *     <li>non-existent, then a directory is created in its place.</li>
         * </ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/os/tempfile.go

    }
    
    // MkdirTemp creates a new temporary directory in the directory dir
    // and returns the pathname of the new directory.
    // The new directory's name is generated by adding a random string to the end of pattern.
    // If pattern includes a "*", the random string replaces the last "*" instead.
    // The directory is created with mode 0o700 (before umask).
    // If dir is the empty string, MkdirTemp uses the default directory for temporary files, as returned by TempDir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/exported_model.proto

      string init_node_name = 2;
    
      // Path to the directory where checkpoint files are saved. This directoy is
      // not expected to be persistent (usually a temporary directory). When
      // fetching the restore op (see `restore_node_name`), this value is provided
      // to the "file_prefix" tensor to identify the checkpoint directory.
      string checkpoint_dir = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 06:12:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/os/removeall_at.go

    	})
    	if err == nil || IsNotExist(err) {
    		return nil
    	}
    
    	// EISDIR means that we have a directory, and we need to
    	// remove its contents.
    	// EPERM or EACCES means that we don't have write permission on
    	// the parent directory, but this entry might still be a directory
    	// whose contents need to be removed.
    	// Otherwise just return the error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. .github/workflows/people.yml

            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          # Ref: https://github.com/actions/runner/issues/2033
          - name: Fix git safe.directory in container
            run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig
          # Allow debugging with tmate
          - name: Setup tmate session
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 07:19:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    // file or directory.
    //
    // The path argument contains the argument to Walk as a prefix.
    // That is, if Walk is called with root argument "dir" and finds a file
    // named "a" in that directory, the walk function will be called with
    // argument "dir/a".
    //
    // The directory and file are joined with Join, which may clean the
    // directory name: if Walk is called with the root argument "x/../dir"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top