Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,008 for locations (0.38 sec)

  1. pkg/bootstrap/platform/gcp_test.go

    				GCPClusterURL: "https://container.googleapis.com/v1/projects/pid/locations/location/clusters/cluster",
    			},
    		},
    		{
    			"location error",
    			func() bool { return true },
    			func() (string, error) { return "pid", nil },
    			func() (string, error) { return "npid", nil },
    			func() (string, error) { return "location", errors.New("error") },
    			func() (string, error) { return "cluster", nil },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            final File home = location.getLocation();
            final File parentPath = home.getParentFile();
            final boolean isEmbeddedJre = home.getName().equalsIgnoreCase("jre");
            if (isEmbeddedJre && hasJavaExecutable(parentPath)) {
                return location.withLocation(parentPath);
            }
            return location;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    
            when:
            module.pom.expectGetMissing()
    
            then:
            fails("showMissing")
            failure.assertResolutionFailure(':missing')
                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. src/internal/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[src.ID] = ll
    		return ll
    	}
    	pm.locationsByID[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 Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

            verifyAll (receivedProblem.locations) {
                size() == 2
                with(get(0) as OffsetInFileLocation) {
                    path == 'test-location'
                    offset == 1
                    length == 2
                }
                with(get(1) as LineInFileLocation) {
                    length == -1
                    column == -1
                    line == 11
                    path == "build file '$buildFile.absolutePath'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

                definition.id.group.name == "deprecation"
                definition.severity == Severity.WARNING
                locations.size() == 2
                (locations[0] as LineInFileLocation).path == "build file '$buildFile.path'" // FIXME: the path should not contain a prefix nor extra quotes
                (locations[1] as LineInFileLocation).path == "build file '$buildFile.path'"
                additionalData instanceof GeneralData
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * Uses the “`mavenCentral`” dependency repository
    * Uses https://junit.org/junit4/[JUnit 4] for testing
    * Has directories in the conventional locations for source code
    * Contains a sample class and unit test, if there are no existing source or test files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		functions[f.ID] = f
    	}
    	locations := make(map[uint64]*Location, len(p.Location))
    	for _, l := range p.Location {
    		if l == nil {
    			return fmt.Errorf("profile has nil location")
    		}
    		if l.ID == 0 {
    			return fmt.Errorf("found location with reserved id=0")
    		}
    		if locations[l.ID] != nil {
    			return fmt.Errorf("multiple locations with same id: %d", l.ID)
    		}
    		locations[l.ID] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top