Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 164 for relativeTo (0.56 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

        }
    
        def "selects matching task relative to default project when relative path is provided"() {
            withIncludedBuilds()
    
            when:
            selector.resolveTaskName(null, null, target, "proj:task")
    
            then:
            1 * taskSelector.getSelection(_, root.defaultProject, "task", false)
        }
    
        def "selects matching task relative to root project of included build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    		junction bool
    		dir      bool
    		drive    bool
    		relative bool
    	}{
    		{junction: true, dir: true, drive: true, relative: false},
    		{junction: true, dir: true, drive: false, relative: false},
    		{junction: true, dir: true, drive: false, relative: true},
    		{junction: false, dir: true, drive: true, relative: false},
    		{junction: false, dir: true, drive: false, relative: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *
         * <p>The last element of the supplied path is used as the project name. The supplied path is converted to a project
         * directory relative to the root project directory. The project directory can be altered by changing the 'projectDir'
         * property after the project has been included (see {@link ProjectDescriptor#setProjectDir(File)})</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	// the generated nodes.
    	generateTagRootsLeaves(p, cfg, o.UI)
    
    	// Delay focus after configuring report to get percentages on all samples.
    	relative := cfg.RelativePercentages
    	if relative {
    		if err := applyFocus(p, numLabelUnits, cfg, o.UI); err != nil {
    			return nil, nil, err
    		}
    	}
    	ropt, err := reportOptions(p, numLabelUnits, cfg)
    	if err != nil {
    		return nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                    interface Parameters extends TransformParameters {
                        @InputFiles
                        @PathSensitive(PathSensitivity.RELATIVE)
                        ${lineEndingNormalization == LineEndingSensitivity.NORMALIZE_LINE_ENDINGS ? "@${NormalizeLineEndings.class.simpleName}" : ''}
                        ConfigurableFileCollection getFiles()
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. src/io/io.go

    // interpreted according to whence:
    // [SeekStart] means relative to the start of the file,
    // [SeekCurrent] means relative to the current offset, and
    // [SeekEnd] means relative to the end
    // (for example, offset = -2 specifies the penultimate byte of the file).
    // Seek returns the new offset relative to the start of the
    // file or an error, if any.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

    And we need to get the dependency function from the module `app.dependencies`, the file `app/dependencies.py`.
    
    So we use a relative import with `..` for the dependencies:
    
    ```Python hl_lines="3" title="app/routers/items.py"
    {!../../../docs_src/bigger_applications/app/routers/items.py!}
    ```
    
    #### How relative imports work
    
    !!! tip
        If you know perfectly how imports work, continue to the next section below.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top