Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,710 for locations (0.21 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/RepositoryOrderingIntegrationSpec.groovy

            failure.assertHasCause("Could not resolve all artifacts for configuration ':classpath'.")
            failure.assertHasCause """
                Could not find my:plugin:1.0.
                Searched in the following locations:
                  - $buildscriptRepoUri/my/plugin/1.0/plugin-1.0.pom
                  - $pluginPortalUri/my/plugin/1.0/plugin-1.0.pom
            """.stripIndent().trim()
    
            when:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 11:30:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/tagroot.go

    		loc = &profile.Location{
    			ID: nextLocID,
    			Line: []profile.Line{
    				{
    					Function: function,
    				},
    			},
    		}
    		nextLocID++
    		p.Location = append(p.Location, loc)
    		locs[locKey] = loc
    		return loc
    	}
    
    	makeLabelLocs := func(s *profile.Sample, keys []string) ([]*profile.Location, bool) {
    		var locs []*profile.Location
    		var match bool
    		for i := range keys {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedMissingModulesIntegrationTest.groovy

    Searched in the following locations:
      - ${repo1Module.pom.uri}
      - ${repo2Module.pom.uri}
    Required by:
    """)
    
            when:
            repo1Module.pom.expectGetMissing()
            repo2Module.pom.expectGetMissing()
    
            then:
            fails 'retrieve'
    
            failure.assertHasCause("""Could not find group:projectA:1.0.
    Searched in the following locations:
      - ${repo1Module.pom.uri}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

                def numberMatcher = duringBuildStatusLine =~ /Received (\d+) file system events during the current build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesInCurrentBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/BuildInputHierarchy.java

        /**
         * Records that some locations are an input to the build.
         */
        public synchronized void recordInputs(Iterable<String> inputLocations) {
            for (String location : inputLocations) {
                VfsRelativePath relativePath = VfsRelativePath.of(location);
                root = root.recordValue(relativePath, ALL_CHILDREN_ARE_INPUTS);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRemoteDependencyWithGradleMetadataResolutionIntegrationTest.groovy

    Searched in the following locations:
        ${m.getArtifact("file1.jar").uri}""")
            failure.assertHasCause("""Could not find a2.jar (test:a:1.2).
    Searched in the following locations:
        ${m.getArtifact("../file2.jar").uri}""")
            failure.assertHasCause("""Could not find a3.jar (test:a:1.2).
    Searched in the following locations:
        ${m.artifact(classifier: 'extra').uri}""")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-monolithic/prebuilt.gradle

                prebuilt$it {
                    headers.with {
                        srcDir "prebuilt/lib$it/include"
                        include "**/*.h"
                    }
                    // TODO: Define library locations (and generate something?)
                }
                <% } %>
    
                commonHeaders {
                    headers.with {
                        <% if (overlapWithOutput) { %>
                            srcDir "\$rootDir"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 735 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug_test.go

    	excerpts := s.atLineRe.FindStringSubmatch(x.o)
    	locations := s.funcFileLinePCre.FindStringSubmatch(x.o)
    	excerpt := ""
    	if len(excerpts) > 1 {
    		excerpt = excerpts[1]
    	}
    	if len(locations) > 0 {
    		fn := canonFileName(locations[2])
    		if *verbose {
    			if s.file != fn {
    				fmt.Printf("%s\n", locations[2]) // don't canonocalize verbose logging
    			}
    			fmt.Printf("  %s\n", locations[3])
    		}
    		s.line = locations[3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. src/go/types/self_test.go

    	"internal/testenv"
    	"path"
    	"path/filepath"
    	"testing"
    	"time"
    
    	. "go/types"
    )
    
    func TestSelf(t *testing.T) {
    	testenv.MustHaveGoBuild(t) // The Go command is needed for the importer to determine the locations of stdlib .a files.
    
    	fset := token.NewFileSet()
    	files, err := pkgFiles(fset, ".")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	conf := Config{Importer: importer.Default()}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		l.Line[i] = pm.mapLine(ln)
    	}
    	// Check memoization table. Must be done on the remapped location to
    	// account for the remapped mapping ID.
    	k := l.key()
    	if ll, ok := pm.locations[k]; ok {
    		pm.locationsByID.set(src.ID, ll)
    		return ll
    	}
    	pm.locationsByID.set(src.ID, l)
    	pm.locations[k] = l
    	pm.p.Location = append(pm.p.Location, l)
    	return l
    }
    
    // key generates locationKey to be used as a key for maps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top