Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 396 for relativeTo (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir("src/main/resources")
                    .withPropertyName("resources")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
                inputs.dir(extension.getUserManual().getSnippets())
                    .withPropertyName("snippets")
                    .withPathSensitivity(PathSensitivity.RELATIVE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

         * This is equivalent to using eachFile() and selectively applying a configuration based on the file's path.
         *
         * @param pattern Ant-style pattern used to match against files' relative paths
         * @param action action called for the FileCopyDetails of each file matching pattern
         * @return this
         */
        CopySpec filesMatching(String pattern, Action<? super FileCopyDetails> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResourceName.java

         */
        public String getPath() {
            return path;
        }
    
        /**
         * Resolves the given path relative to this name. The path can be a relative path or an absolute path. The '/' character is used to separate the elements of the path.
         */
        public ExternalResourceName resolve(String path) {
            List<String> parts = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/net/url/url.go

    // parse parses a URL from a string in one of two contexts. If
    // viaRequest is true, the URL is assumed to have arrived via an HTTP request,
    // in which case only absolute URLs or path-absolute relative URLs are allowed.
    // If viaRequest is false, all forms of relative URLs are allowed.
    func parse(rawURL string, viaRequest bool) (*URL, error) {
    	var rest string
    	var err error
    
    	if stringContainsCTLByte(rawURL) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/modfile.go

    // ToDirectoryPath adds a prefix if necessary so that path in unambiguously
    // an absolute path or a relative path starting with a '.' or '..'
    // path component.
    func ToDirectoryPath(path string) string {
    	if modfile.IsDirectoryPath(path) {
    		return path
    	}
    	// The path is not a relative path or an absolute path, so make it relative
    	// to the current directory.
    	return "./" + filepath.ToSlash(filepath.Clean(path))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/MoreObjects.java

        /**
         * Holder object for values that cannot be null or empty (will be printed unconditionally). This
         * helps to shortcut most calls to isEmpty(), which is important because the check for emptiness
         * is relatively expensive. Use a subtype so this also doesn't need any extra storage.
         */
        private static final class UnconditionalValueHolder extends ValueHolder {}
      }
    
      private MoreObjects() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            }
    
            // <path>:name -> resolve <path> to a project + select task with matching name in that project
            // when <path> is absolute -> resolve <path> relative to root project
            // when <path> is relative -> resolve <path> relative to default project
    
            Path projectPath = path.getParent();
            ProjectState matchingProject;
            if (projectPath.isAbsolute()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    Though moving the files around wouldn't have an effect on the result of the compilation, for incremental compilation the `JavaCompile` task relies on the relative path to find other classes in the same package.
    Therefore, the path sensitivity for the sources of the `JavaCompile` task is `RELATIVE`.
    Because of this only the normalized (relative) paths of the Java source files are considered as inputs to the `JavaCompile` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/css/all.css

            display: block;
            content: ' ';
            margin-top: -1.8em;
            height: 1.8em;
            visibility: hidden
        }
    
        html {
            overflow-y: scroll;
            position: relative;
            min-height: 100%
        }
    
        body {
            padding-top: 3.7rem;
            font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
            color: #ddd;
            background-color: #5a5a5a;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. src/os/file.go

    )
    
    // Seek whence values.
    //
    // Deprecated: Use io.SeekStart, io.SeekCurrent, and io.SeekEnd.
    const (
    	SEEK_SET int = 0 // seek relative to the origin of the file
    	SEEK_CUR int = 1 // seek relative to the current offset
    	SEEK_END int = 2 // seek relative to the end
    )
    
    // LinkError records an error during a link or symlink or rename
    // system call and the paths that caused it.
    type LinkError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top