Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for relativeTo (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * <p>Locates a project by path. If the path is relative, it is interpreted relative to this project.</p>
         *
         * @param path The path.
         * @return The project with the given path. Returns null if no such project exists.
         */
        @Nullable
        Project findProject(String path);
    
        /**
         * <p>Locates a project by path. If the path is relative, it is interpreted relative to this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            "no sensitivity"                            | ""
            "@PathSensitive(PathSensitivity.ABSOLUTE)"  | "@PathSensitive(PathSensitivity.ABSOLUTE)"
            "@PathSensitive(PathSensitivity.RELATIVE)"  | "@PathSensitive(PathSensitivity.RELATIVE)"
            "@PathSensitive(PathSensitivity.NAME_ONLY)" | "@PathSensitive(PathSensitivity.NAME_ONLY)"
            "@PathSensitive(PathSensitivity.NONE)"      | "@PathSensitive(PathSensitivity.NONE)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    	vertical-align: middle;
    	position: relative;
    	top: -0.1em;
    	white-space: nowrap;
    }
    
    .keyseq kbd:first-child {
    	margin-left: 0;
    }
    
    .keyseq kbd:last-child {
    	margin-right: 0;
    }
    
    .menuseq,
    .menu {
    	color: var(--num-color);
    }
    
    b.button:before,
    b.button:after {
    	position: relative;
    	top: -1px;
    	font-weight: normal;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	SECURITY_AUTHENTICATED_USER_RID     = 0xb
    	SECURITY_RESTRICTED_CODE_RID        = 0xc
    	SECURITY_NT_NON_UNIQUE_RID          = 0x15
    )
    
    // Predefined domain-relative RIDs for local groups.
    // See https://msdn.microsoft.com/en-us/library/windows/desktop/aa379649(v=vs.85).aspx
    const (
    	DOMAIN_ALIAS_RID_ADMINS                         = 0x220
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        return modelSource.getLocation();
                    }
    
                    @Override
                    public Source resolve(String relative) {
                        if (modelSource instanceof ModelSource2 ms) {
                            return toSource(ms.getRelatedSource(relative));
                        } else {
                            return null;
                        }
                    }
                };
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    CAUTION: `files()` properly handles relative paths and `File(relative path)` instances, resolving them relative to the project directory.
    
    As with the link:{groovyDslPath}/org.gradle.api.Project.html#org.gradle.api.Project:file(java.lang.Object)[Project.file(java.lang.Object)] method covered in the <<#sec:single_file_paths,previous section>>, all relative paths are evaluated relative to the current project directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

        border-radius: 3px;
        position: relative;
        background:none;
        transition: opacity 0.3s;
        cursor: pointer;
    }
    :hover > button.copy {
        opacity: 80%;
    }
    button.copy:hover,
    button.copy:active,
    button.copy:focus-visible,
    button.copy.visible {
        opacity: 100%;
    }
    button.copy img {
        position: relative;
        background: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers.go

    // memory compares pods by largest consumer of memory relative to request.
    func memory(stats statsFunc) cmpFunc {
    	return func(p1, p2 *v1.Pod) int {
    		p1Stats, p1Found := stats(p1)
    		p2Stats, p2Found := stats(p2)
    		if !p1Found || !p2Found {
    			// prioritize evicting the pod for which no stats were found
    			return cmpBool(!p1Found, !p2Found)
    		}
    
    		// adjust p1, p2 usage relative to the request (if any)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    	if out := ldr.OuterSym(s); out != 0 {
    		v = ldr.SymVersion(out)
    	}
    
    	toc := syms.DotTOC[v]
    	if toc == 0 {
    		ldr.Errorf(s, "TOC-relative relocation in object without .TOC.")
    		return 0
    	}
    
    	return ldr.SymValue(toc)
    }
    
    // archreloctoc relocates a TOC relative symbol.
    func archreloctoc(ldr *loader.Loader, target *ld.Target, syms *ld.ArchSyms, r loader.Reloc, s loader.Sym, val int64) int64 {
    	rs := r.Sym()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. src/net/url/url_test.go

    			Host:   "www.google.com",
    			Path:   "search",
    		},
    		want: "http://www.google.com/search",
    	},
    	// Relative path with first element containing ":" should be prepended with "./", golang.org/issue/17184
    	{
    		url: URL{
    			Path: "this:that",
    		},
    		want: "./this:that",
    	},
    	// Relative path with second element containing ":" should not be prepended with "./"
    	{
    		url: URL{
    			Path: "here/this:that",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top