Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,184 for relativeTo (0.73 sec)

  1. src/cmd/go/internal/load/search.go

    			return func(p *Package) bool { return p.Dir == dir }
    		}
    		matchPath := pkgpattern.MatchPattern(pattern)
    		return func(p *Package) bool {
    			// Compute relative path to dir and see if it matches the pattern.
    			rel, err := filepath.Rel(dir, p.Dir)
    			if err != nil {
    				// Cannot make relative - e.g. different drive letters on Windows.
    				return false
    			}
    			rel = filepath.ToSlash(rel)
    			if rel == ".." || strings.HasPrefix(rel, "../") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. ci/official/bisect.sh

    #   TF_BISECT_BAD: First bad commit (e.g. commit from the first failing job)
    #   TF_BISECT_SCRIPT: The build script path relative to the TF root dir, e.g.
    #     ci/official/wheel.sh
    #   TFCI: The env config path, relative to the TF root dir, e.g.
    #     ci/official/envs/an_env_config
    #
    # Note that you can combine bisect.sh with any.sh to bisect a single test:
    #
    #   export TFCI=...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/projects/StageProject.kt

                performancePartialTrigger.dependencies {
                    artifacts(performanceTestTrigger) {
                        id = "artifact_dependency_${performancePartialTrigger.uuid}_${(performanceTestTrigger.id as RelativeId).relativeId}"
                        artifactRules = "**/* => $artifactDirName"
                    }
                }
            }
            return performancePartialTrigger
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/lastafluteMap.dfprop

    #     ; commonMap = map:{
    #         ; path = [relative path to common project from DBFlute client]
    #         ; freeGenList = list:{ [env or config or label or message or html] }
    #         ; propertiesHtmlList = list:{ [env or config or label or message] }
    #     }
    #     ; appMap = map:{
    #         ; [application name, camel case, initial uncapitalised] = map:{
    #             ; path = [relative path to application project from DBFlute client]
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/TemporaryFileProvider.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    @ServiceScope(Scope.Project.class)
    public interface TemporaryFileProvider {
        /**
         * Allocates a new temporary file with the exact specified path,
         * relative to the temporary file directory. Does not create the file.
         * Provides no guarantees around whether the file already exists.
         *
         * @param path The tail path components for the file.
         * @return The file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https03.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

        }
    
        /**
         * Sets the source for this task. Delegates to {@link #setSource(Object)}.
         *
         * If the source is of type {@link SourceDirectorySet}, then the relative path of each source grammar files
         * is used to determine the relative output path of the generated source
         * If the source is not of type {@link SourceDirectorySet}, then the generated source files end up
         * flattened in the specified output directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/work_use_dot.txt

    grep '^use ["]?'$PWD'["]?$' ../../go.work
    
    # An absolute path should replace an entry for the corresponding relative path
    # and vice-versa.
    go work use .
    cmp ../../go.work ../../go.work.rel
    go work use $PWD
    grep -count=1 '^use ' ../../go.work
    grep '^use ["]?'$PWD'["]?$' ../../go.work
    
    # If both the absolute and relative paths are named, 'go work use' should error
    # out: we don't know which one to use, and shouldn't add both because the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 21:19:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. src/math/cmplx/sin.go

    //
    // DESCRIPTION:
    //
    // If
    //     z = x + iy,
    //
    // then
    //
    //     w = sin x  cosh y  +  i cos x sinh y.
    //
    // csin(z) = -i csinh(iz).
    //
    // ACCURACY:
    //
    //                      Relative error:
    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      8400       5.3e-17     1.3e-17
    //    IEEE      -10,+10     30000       3.8e-16     1.0e-16
    // Also tested by csin(casin(z)) = z.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Shows details of frame that is under the mouse */
    #current-details {
      position: absolute;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top