Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 591 for GetMessage (0.35 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/SomeToolingModel.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.fixtures
    
    import org.gradle.tooling.BuildAction
    import org.gradle.tooling.BuildController
    
    interface SomeToolingModel {
        String getMessage()
    }
    
    interface SomeToolingModelParameter {
        String getMessagePrefix()
        void setMessagePrefix(String value)
    }
    
    class SomeToolingModelBuildAction implements BuildAction<SomeToolingModel> {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestOutputEvent.java

     */
    public interface TestOutputEvent {
    
        /**
         * Destination of the message
         */
        Destination getDestination();
    
        /**
         * Message content
         */
        String getMessage();
    
        /**
         * Destination of the message
         */
        enum Destination {
            StdOut, StdErr
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomRelocation.java

        /**
         * The new version of the artifact.
         */
        Property<String> getVersion();
    
        /**
         * The message to show the user for this relocation.
         */
        Property<String> getMessage();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblemCollectorRequest.java

        }
    
        public ModelProblemCollectorRequest setException(Exception exception) {
            this.exception = exception;
            return this;
        }
    
        public String getMessage() {
            return message;
        }
    
        public ModelProblemCollectorRequest setMessage(String message) {
            this.message = message;
            return this;
        }
    
        public InputLocation getLocation() {
            return location;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationExecutor.java

            try {
                queueAction.execute(queue);
            } catch (Exception e) {
                failures.add(new BuildOperationQueueFailure("There was a failure while populating the build operation queue: " + e.getMessage(), e));
                queue.cancel();
            }
    
            try {
                queue.waitForCompletion();
            } catch (MultipleBuildOperationFailures e) {
                failures.add(e);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/typeconversion/JavaVersionFromCharSequenceNotationConverter.java

            try {
                result.converted(JavaVersion.toVersion(notation));
            } catch (IllegalArgumentException e) {
                throw new TypeConversionException(e.getMessage(), e);
            }
        }
    
        @Override
        public void describe(DiagnosticsVisitor visitor) {
            visitor.candidate("A Java version (e.g. '1.8', '11')");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:43:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/Conflict.java

        public <E> Conflict(List<? extends ModuleVersionIdentifier> versions, String message) {
            this.versions = versions;
            this.message = message;
        }
    
        public String getMessage() {
            return message;
        }
    
        public List<? extends ModuleVersionIdentifier> getVersions() {
            return versions;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOutputDescriptor.java

        /**
         * Describes whether the content was printed to the standard output or the standard error.
         */
        Destination getDestination();
    
        /**
         * The text printed by the test.
         */
        String getMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

                                return problem.getException();
                            }
    
                            @Override
                            public String getMessage() {
                                return problem.getMessage();
                            }
    
                            @Override
                            public Severity getSeverity() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorParsingException.java

            }
    
            if (descriptorLocation != null) {
                message += " (" + descriptorLocation + ")";
            }
    
            if (e != null) {
                message += ": " + e.getMessage();
            }
    
            return message;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top