Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DefaultFileLocation (1.39 sec)

  1. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                if (value == null) {
                    out.nullValue();
                    return;
                }
    
                if (value instanceof DefaultFileLocation) {
                    new FileLocationAdapter().write(out, (DefaultFileLocation) value);
                    return;
                }
                if (value instanceof DefaultPluginIdLocation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            this.addLocation(new DefaultTaskPathLocation(buildTreePath));
            return this;
        }
    
        @Override
        public InternalProblemBuilder fileLocation(String path) {
            this.addLocation(DefaultFileLocation.from(path));
            return this;
        }
    
        @Override
        public InternalProblemBuilder lineInFileLocation(String path, int line) {
            this.addLocation(DefaultLineInFileLocation.from(path, line));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

                    FileLocation fileLocation = (FileLocation) location;
                    return new org.gradle.internal.build.event.types.DefaultFileLocation(fileLocation.getPath());
                } else if (location instanceof PluginIdLocation) {
                    PluginIdLocation pluginLocation = (PluginIdLocation) location;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import org.gradle.tooling.events.problems.internal.DefaultDocumentationLink;
    import org.gradle.tooling.events.problems.internal.DefaultFailureContainer;
    import org.gradle.tooling.events.problems.internal.DefaultFileLocation;
    import org.gradle.tooling.events.problems.internal.DefaultLineInFileLocation;
    import org.gradle.tooling.events.problems.internal.DefaultOffsetInFileLocation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top