Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 485 for relativeTo (0.17 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Create a context-sensitive call tree",
    		"Treat locations reached through different paths as separate."),
    
    	// Display options.
    	"relative_percentages": helpText(
    		"Show percentages relative to focused subgraph",
    		"If unset, percentages are relative to full graph before focusing",
    		"to facilitate comparison with original graph."),
    	"unit": helpText(
    		"Measurement units to display",
    		"Scale the sample values to this unit.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

        Map<String, String> getDatabaseParameters() {
            return databaseParameters
        }
    
        @Optional
        @Input
        abstract Property<String> getTestProjectName()
    
        @PathSensitive(PathSensitivity.RELATIVE)
        @InputFiles
        abstract ConfigurableFileCollection getTestProjectFiles()
    
        void addDatabaseParameters(Map<String, String> databaseConnectionParameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. src/runtime/metrics.go

    		// [33, 49)). We can achieve this by shifting all bucket
    		// boundaries up by 1.
    		//
    		// Also, a float64 can precisely represent integers with
    		// value up to 2^53 and size classes are relatively small
    		// (nowhere near 2^48 even) so this will give us exact
    		// boundaries.
    		sizeClassBuckets[i] = float64(class_to_size[i] + 1)
    	}
    	sizeClassBuckets = append(sizeClassBuckets, float64Inf())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                @CacheableTask
                @UntrackedTask(because = "For testing")
                abstract class MyTask extends DefaultTask {
                    @InputFile
                    @PathSensitive(PathSensitivity.RELATIVE)
                    abstract RegularFileProperty getInputFile()
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
                    @TaskAction
                    void doStuff() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

                .withPluginClasspath(plugin.implClasspath.collect { new FileSubclass(it) })
                .build()
    
            then:
            result.task(":helloWorld1").outcome == SUCCESS
        }
    
        def "can use relative files as part of injected classpath"() {
            given:
            file("changed/settings.gradle").createFile()
            file("changed/build.gradle") << plugin.build().useDeclaration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. .teamcity/mvnw

      if [ -r /etc/gentoo-release ] ; then
        JAVA_HOME=`java-config --jre-home`
      fi
    fi
    
    if [ -z "$M2_HOME" ] ; then
      ## resolve links - $0 may be a link to maven's home
      PRG="$0"
    
      # need this for relative symlinks
      while [ -h "$PRG" ] ; do
        ls=`ls -ld "$PRG"`
        link=`expr "$ls" : '.*-> \(.*\)$'`
        if expr "$link" : '/.*' > /dev/null; then
          PRG="$link"
        else
          PRG="`dirname "$PRG"`/$link"
        fi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    func (s *scanner) errorf(format string, args ...interface{}) {
    	s.error(fmt.Sprintf(format, args...))
    }
    
    // errorAtf reports an error at a byte column offset relative to the current token start.
    func (s *scanner) errorAtf(offset int, format string, args ...interface{}) {
    	s.errh(s.line, s.col+uint(offset), fmt.Sprintf(format, args...))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

            hints.put(MavenModelMerger.CHILD_PATH_ADJUSTMENT, getChildPathAdjustment(child, parent, childPath));
            return merger.merge(child, parent, false, hints);
        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            then:
            succeeds()
        }
    
        @Issue('https://github.com/gradle/gradle/issues/25252')
        def "wrapper task succeeds if distribution url from command-line results in relative uri (no scheme)"() {
            given:
            file("gradle/wrapper/../distributions/8.0-rc-5") << "some content"
    
            def url = "../distributions/8.0-rc-5"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    			requestInfo.Verb = "patch"
    		case "DELETE":
    			requestInfo.Verb = "delete"
    		default:
    			requestInfo.Verb = ""
    		}
    	}
    
    	// URL forms: /namespaces/{namespace}/{kind}/*, where parts are adjusted to be relative to kind
    	if currentParts[0] == "namespaces" {
    		if len(currentParts) > 1 {
    			requestInfo.Namespace = currentParts[1]
    
    			// if there is another step after the namespace name and it is not a known namespace subresource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top