Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,710 for locations (0.7 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ModuleVersionNotFoundException.java

            builder.endChildren();
        }
    
        private static void addLocations(TreeFormatter builder, Collection<String> locations) {
            if (locations.isEmpty()) {
                return;
            }
            builder.node("Searched in the following locations");
            builder.startChildren();
    
            locations.forEach(builder::node);
    
            builder.endChildren();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ArtifactNotFoundExceptionTest.groovy

    class ArtifactNotFoundExceptionTest extends Specification {
        def "formats message and locations"() {
            def artifactId = Stub(ComponentArtifactIdentifier) {
                getDisplayName() >> "<artifact>"
            }
            def locations = ["http://somewhere", "sftp://elsewhere"]
            def exception = new ArtifactNotFoundException(artifactId, locations)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/metrics/error_collector_inst_test.cc

          1);
    
      // Check the location information.
      std::vector<std::string> locations;
      for (const auto& error : collected_errors) {
        EXPECT_TRUE(error.has_location());
        locations.push_back(error.location().DebugString());
      }
    
      EXPECT_THAT(locations, Each(testing::HasSubstr("CALLSITELOC")));
      EXPECT_THAT(locations, Each(testing::HasSubstr(input_file)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ArtifactNotFoundException.java

            StringBuilder builder = new StringBuilder();
            builder.append(String.format("Could not find %s.", artifact.getDisplayName()));
            if (!locations.isEmpty()) {
                builder.append(String.format("%nSearched in the following locations:"));
                for (String location : locations) {
                    builder.append(String.format("%n    %s", location));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:55 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/VersionHierarchyRootTest.groovy

        }
    
        private long getVersion(String location) {
            return versionHierarchyRoot.getVersion(location)
        }
    
        List<String> locationWithAncestors(String location) {
            (location.split('/') as List)
                .findAll {!it.empty }
                .inits().collect { "/${it.join('/')}".toString() }
        }
    
        private void updateVersions(String... locations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProblemDetails.java

            List<InternalLocation> locations,
            List<InternalSolution> solutions,
            InternalAdditionalData additionalData,
            @Nullable InternalFailure failure
        ) {
            this.definition = definition;
            this.details = details;
            this.contextualLabel = contextualLabel;
            this.locations = locations;
            this.solutions = solutions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            then:
            directories.size() == 2
            directories*.location.toSorted() == [
                candidates.file("11.0.6.hs-adpt"),
                candidates.file("14")
            ]
            directories*.source.unique() == ["Common Linux Locations"]
        }
    
        def "supplies installations for multiple locations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/ResourceGeneratingProcessorFixture.groovy

            this
        }
    
        ResourceGeneratingProcessorFixture withOutputLocations(String... locations) {
            outputLocations = Arrays.asList(locations)
            this
        }
    
        ResourceGeneratingProcessorFixture withOutputLocations(List<String> locations) {
            outputLocations = locations
            this
        }
    
        String getGeneratorCode() {
            def outputs = outputLocations.collect { """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/BuildLayoutIntegrationTest.groovy

        }
    
        def "locations are as expected for non-standard settings locations available for scripts"() {
            def customSettingsPath = "custom-subdir/custom-settings.gradle"
            def customSettingsFile = testDirectory.file(customSettingsPath)
            def customSettingsDir = customSettingsFile.parentFile
            // setting a custom settings location is deprecated
            executer.noDeprecationChecks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

                definition.severity == Severity.WARNING
                definition.documentationLink != null
                locations.size() == 2
                locations[0].path == "build file 'build.gradle'"
                locations[0].line == 2
                locations[1].path == "build file '${buildFile.absolutePath}'"
                locations[1].line == 2
            }
    
            when:
            configurationCacheRunLenient '-Pdummy=true', 'run'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top