Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,008 for locations (0.16 sec)

  1. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

            this.source = location.getSource() != null ? new InputSource(location.getSource()) : null;
            this.locations = location.getLocations().isEmpty()
                    ? null
                    : location.getLocations().entrySet().stream()
                            .collect(Collectors.toMap(
                                    e -> e.getKey(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            DefaultModuleIdentifier.newId(group, name)
        }
    
        def "formats message to include id when no locations"() {
            def exception = new ModuleVersionNotFoundException(newId("org", "a", "1.2"), [])
    
            expect:
            exception.message == 'Could not find org:a:1.2.'
        }
    
        def "formats message to include id and locations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. src/mdo/model.vm

            @Nonnull
            public Builder location(Object key, InputLocation location) {
                if (location != null) {
                    if (!(this.locations instanceof HashMap)) {
                        this.locations = this.locations != null ? new HashMap<>(this.locations) : new HashMap<>();
                    }
                    this.locations.put(key, location);
                }
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

        private static List<ProblemLocation> fromList(List<Object> locations) {
            List<ProblemLocation> result = []
            locations.each { location ->
                if (location['pluginId'] != null) {
                    result += new ReceivedPluginIdLocation(location as Map<String, Object>)
                } else if (location['line'] != null) {
                    result += new ReceivedLineInFileLocation(location as Map<String, Object>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            ProblemDiagnostics problemDiagnostics = problemStream.forCurrentCaller(exceptionForProblemInstantiation);
            Location loc = problemDiagnostics.getLocation();
            if (loc != null) {
                locations.add(getFileLocation(loc));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/internal/profile/profile.go

    		}
    		functions[f.ID] = f
    	}
    	locations := make(map[uint64]*Location, len(p.Location))
    	for _, l := range p.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
    		if m := l.Mapping; m != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

    Searched in the following locations:
        ${sourceArtifact.uri}""")
    
            when:
            server.resetExpectations()
    
            then:
            fails("verify")
            failure.assertHasCause("""Could not find some-artifact-1.0-my-sources.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${sourceArtifact.uri}""")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            def locations = problem.locations
            // We use this counter to assert that we have visited all locations
            def assertedLocationCount = 0
    
            FileLocation fileLocation = locations.find { it instanceof FileLocation }
            assert fileLocation != null: "Expected a file location, but it was null"
            def fileLocationPath = fileLocation.path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

                ));
        }
    
        @Override
        public void invalidate(Iterable<String> locations) {
            writeListener.locationsWritten(locations);
            virtualFileSystem.invalidate(locations);
        }
    
        @Override
        public void write(Iterable<String> locations, IoRunnable action) throws IOException {
            invalidate(locations);
            action.run();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenRemoteResolveIntegrationTest.groovy

                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${moduleA.ivy.uri}
    Required by:
        project :""")
                .assertHasCause("""Could not find group:projectB:1.0-milestone-9.
    Searched in the following locations:
      - ${moduleB.ivy.uri}
    Required by:
        project :""")
            failure.assertHasResolutions(REPOSITORY_HINT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top