Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,008 for locations (0.16 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

            }
        }
    
        private static List<InternalLocation> toInternalLocations(List<ProblemLocation> locations) {
            return locations.stream().map(location -> {
                if (location instanceof LineInFileLocation) {
                    LineInFileLocation fileLocation = (LineInFileLocation) location;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    // location ids.
    func (p *Profile) remapLocationIDs() {
    	seen := make(map[*Location]bool, len(p.Location))
    	var locs []*Location
    
    	for _, s := range p.Sample {
    		for _, l := range s.Location {
    			if seen[l] {
    				continue
    			}
    			l.ID = uint64(len(locs) + 1)
    			locs = append(locs, l)
    			seen[l] = true
    		}
    	}
    	p.Location = locs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  3. hack/lib/util.sh

        locations+=(
          "${KUBE_ROOT}/_output/local/go/bin/${lookfor}"
          "${KUBE_ROOT}/_output/dockerized/go/bin/${lookfor}"
        );
      fi
    
      # looks for $1 in the $PATH
      if which "${lookfor}" >/dev/null; then
        local -r local_bin="$(which "${lookfor}")"
        locations+=( "${local_bin}"  );
      fi
    
      # List most recently-updated location.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

        }
    
        def "can use file() method to resolve locations created relative to the project dir and build dir"() {
            buildFile << """
                def location = $expression
                println "location: " + file(location)
    """
    
            when:
            run()
    
            then:
            outputContains("location: " + testDirectory.file(resolvesTo))
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. src/internal/profile/encode.go

    		x := new(Mapping)
    		pp := m.(*Profile)
    		pp.Mapping = append(pp.Mapping, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Location location = 4
    	func(b *buffer, m message) error {
    		x := new(Location)
    		pp := m.(*Profile)
    		pp.Location = append(pp.Location, x)
    		return decodeMessage(b, x)
    	},
    	// repeated Function function = 5
    	func(b *buffer, m message) error {
    		x := new(Function)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/fused_kernel_matcher.cc

        if (fuse_activation) {
          locations.push_back(activation->getLoc());
          fused_ops.push_back(
              StringAttr::get(context, activation->getName().stripDialect()));
          result_type = activation->getResultTypes().front();
        } else {
          result_type = bias_add.getResult().getType();
        }
    
        auto fused_loc = rewriter.getFusedLoc(locations);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

        }
    
        def "processors can generate identical resources in different locations"() {
            given:
            def locations = [StandardLocation.SOURCE_OUTPUT.toString(), StandardLocation.NATIVE_HEADER_OUTPUT.toString(), StandardLocation.CLASS_OUTPUT.toString()]
            withProcessor(new ResourceGeneratingProcessorFixture().withOutputLocations(locations).withDeclaredType(IncrementalAnnotationProcessorType.ISOLATING))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    === 2. Define the locations where dependencies can be found
    
    A project generally has a number of dependencies it needs to do its work.
    Dependencies include plugins, libraries, or components that Gradle must download for the build to succeed.
    
    The build script lets Gradle know where to look for the binaries of the dependencies.
    More than one location can be provided:
    
    [source]
    ----
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    1. <<objectfactory,`ObjectFactory`>> - Allows model objects to be created.
    2. <<sec:projectlayout,`ProjectLayout`>> - Provides access to key project locations.
    3. <<buildlayout,`BuildLayout`>> - Provides access to important locations for a Gradle build.
    4. <<providerfactory,`ProviderFactory`>> - Creates `Provider` instances.
    5. <<workerexecutor,`WorkerExecutor`>> - Allows a task to run work in parallel.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

    Versions that do not match:
      - 2.1
      - 2.0
    Versions rejected by component selection rules:
      - 1.2
      - 1.1
      - 1.0
    Searched in the following locations:
      - ${versionListingURI('org.utils', 'api')}
    ${triedMetadata('org.utils', 'api', "1.2")}
    ${triedMetadata('org.utils', 'api', "1.1")}
    ${triedMetadata('org.utils', 'api', "1.0")}
    Required by:
    """)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
Back to top