Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 470 for locations (0.37 sec)

  1. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

                this.distZip = distZip;
            }
    
            /**
             * Returns the location to install the distribution into.
             */
            public File getDistributionDir() {
                return distDir;
            }
    
            /**
             * Returns the location to install the distribution ZIP file to.
             */
            public File getZipFile() {
                return distZip;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		return f
    	}
    
    	missingBinaries := false
    	mappingLocs := map[*profile.Mapping][]*profile.Location{}
    	for _, l := range prof.Location {
    		mappingLocs[l.Mapping] = append(mappingLocs[l.Mapping], l)
    	}
    	for midx, m := range prof.Mapping {
    		locs := mappingLocs[m]
    		if len(locs) == 0 {
    			// The mapping is dangling and has no locations pointing to it.
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/log/slog/value_test.go

    	} {
    		got := TimeValue(tm).Time()
    		if !got.Equal(tm) {
    			t.Errorf("got %s (%#[1]v), want %s (%#[2]v)", got, tm)
    		}
    		if g, w := got.Location(), tm.Location(); g != w {
    			t.Errorf("%s: location: got %v, want %v", tm, g, w)
    		}
    	}
    }
    
    func TestEmptyGroup(t *testing.T) {
    	g := GroupValue(
    		Int("a", 1),
    		Group("g1", Group("g2")),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all files for configuration ':buildSrc:compileClasspath'.")
            failure.assertHasCause("""Could not find org.test:test:1.2.
    Searched in the following locations:
      - ${m.pom.file.displayUri}
    Required by:
        project :buildSrc""")
            failure.assertHasResolutions(repositoryHint("Maven POM"),
                STACKTRACE_MESSAGE,
                INFO_DEBUG,
                SCAN,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                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'
                solutions == [ '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: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top