Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ProblemLocation (0.18 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    
    /**
     * Represents a location information of a problem.
     */
    public interface ProblemLocation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 757 bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblem.java

        private final List<ProblemLocation> problemLocations;
        private final String details;
        private final RuntimeException exception;
        private final AdditionalData additionalData;
    
        protected DefaultProblem(
            ProblemDefinition problemDefinition,
            @Nullable String contextualLabel,
            List<String> solutions,
            List<ProblemLocation> problemLocations,
            @Nullable String details,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            this.exception = problemDetails['exception'] == null ? null : new ReceivedException(problemDetails['exception'] as Map<String, Object>)
        }
    
        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>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/FileLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * A file location.
     */
    public interface FileLocation extends ProblemLocation {
    
        /**
         * The path to the file.
         *
         * @return the file path
         */
        String getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 850 bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

        );
        private ProblemStream problemStream;
    
        private ProblemId id;
        private String contextualLabel;
        private Severity severity;
        private final ImmutableList.Builder<ProblemLocation> locations = ImmutableList.builder();
        private String details;
        private DocLink docLink;
        private List<String> solutions;
        private RuntimeException exception;
        private AdditionalData additionalData;
    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. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                in.beginObject();
                DefaultPluginIdLocation problemLocation = readObject(in);
                in.endObject();
    
                Objects.requireNonNull(problemLocation, "pluginId must not be null");
                return problemLocation;
            }
    
            private static DefaultPluginIdLocation readObject(JsonReader in) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/PluginIdLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    
    /**
     * Plugin ID location.
     */
    public interface PluginIdLocation extends ProblemLocation {
    
        /**
         * The plugin ID.
         *
         * @return the plugin ID
         */
        String getPluginId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 855 bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/TaskPathLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * Task path location.
     */
    public interface TaskPathLocation extends ProblemLocation {
    
        /**
         * Returns the absolute build tree path of the task reporting the problem.
         *
         * @return the build tree path
         */
        String getBuildTreePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 922 bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

         */
        @Nullable
        String getDetails();
    
        /**
         * Return the location data associated available for this problem.
         */
        List<ProblemLocation> getLocations();
    
        /**
         * The exception that caused the problem.
         */
        @Nullable
        RuntimeException getException();
    
        /**
         * Additional data attached to the problem.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

    import org.gradle.api.problems.internal.PluginIdLocation;
    import org.gradle.api.problems.internal.Problem;
    import org.gradle.api.problems.internal.ProblemDefinition;
    import org.gradle.api.problems.internal.ProblemLocation;
    import org.gradle.api.problems.internal.TaskPathLocation;
    import org.gradle.api.problems.internal.TypeValidationData;
    import org.gradle.internal.build.event.types.DefaultAdditionalData;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top