Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 859 for locations (0.15 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

                    def vendor = getVendor.apply(javaInstallationLocation.location.name)
                    newMetadata(javaInstallationLocation, languageVersion, vendor)
                }
            }
        }
    
        def newMetadata(InstallationLocation javaHome, String languageVersion, String vendor = "") {
            def location = javaHome.location
            if (location.name.contains("broken")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputFilePropertyAnnotationHandler.java

                        .severity(Severity.ERROR)
                        .details("If you don't declare the normalization, outputs can't be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly")
                        .solution("Declare the normalization strategy by annotating the property with either @PathSensitive, @Classpath or @CompileClasspath");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

        ) {
            return new DefaultFileSystemAccess(
                fileHasher,
                stringInterner,
                stat,
                virtualFileSystem,
                locations -> locations.forEach(System.out::println),
                statisticsCollector
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    The following is a list of common package managers, tools, and locations that are supported by the JVM auto-detection.
    
    JVM auto-detection knows how to work with:
    
    * Operation-system specific locations: Linux, macOS, Windows
    * Package Managers: https://asdf-vm.com/#/[Asdf-vm], https://github.com/shyiko/jabba[Jabba], https://sdkman.io/[SDKMAN!]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. src/runtime/pprof/protomem_test.go

    	samples := []*profile.Sample{
    		{
    			Value: []int64{2050, 2099200, 1537, 1574400},
    			Location: []*profile.Location{
    				{ID: 1, Mapping: map1, Address: addr1},
    				{ID: 2, Mapping: map2, Address: addr2},
    			},
    			NumLabel: map[string][]int64{"bytes": {1024}},
    		},
    		{
    			Value: []int64{1, 829411, 1, 829411},
    			Location: []*profile.Location{
    				{ID: 3, Mapping: map2, Address: addr2 + 1},
    				{ID: 4, Mapping: map2, Address: addr2 + 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/generic.go

    func AddKubeConfigFlag(fs *pflag.FlagSet, kubeConfigFile *string) {
    	fs.StringVar(kubeConfigFile, KubeconfigPath, *kubeConfigFile, "The kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations can be searched for an existing kubeconfig file.")
    	// Note that DefValue is the text shown in the terminal and not the default value assigned to the flag
    	fs.Lookup(KubeconfigPath).DefValue = constants.GetAdminKubeConfigPath()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                    @Override
                    public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                        contents.forEach(location -> taskInputs.add(location.getAbsolutePath()));
                    }
    
                    @Override
                    public void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            def installations = registry.listInstallations()
    
            then:
            installations.size() == 1
            installations[0].location == jdk8
            installations[0].source == "testSource"
        }
    
        def "registry filters duplicate locations"() {
            def jdk8 = createJdkInstallation("8")
            when:
            def registry = createRegistry([jdk8, jdk8])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    }
    
    // CreateNodes creates graph nodes for all locations in a profile. It
    // returns set of all nodes, plus a mapping of each location to the
    // set of corresponding nodes (one per location.Line).
    func CreateNodes(prof *profile.Profile, o *Options) (Nodes, map[uint64]Nodes) {
    	locations := make(map[uint64]Nodes, len(prof.Location))
    	nm := make(NodeMap, len(prof.Location))
    	for _, l := range prof.Location {
    		lines := l.Line
    		if len(lines) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            def module2File = file("module2/module2.gradle")
            failure.assertHasFileName("Build file '$module2File'")
            failure.assertHasLineNumber(5)
        }
    
        def "caches scripts applied from remote locations"() {
            server.start()
    
            given:
            root {
                'build.gradle'(this.applyFromRemote(server))
            }
            server.expect(server.get("shared.gradle").send("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top