Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 591 for setMessage (0.22 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                assertThat(e.getMessage(), equalTo("Class AsmBackedClassGeneratorTest.PrivateBean is private."));
            }
        }
    
        @Test
        public void cannotCreateInstanceOfFinalClass() throws Exception {
            try {
                newInstance(FinalBean.class);
                fail();
            } catch (ClassGenerationException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/internal/ExtensionResolutionException.java

            super(
                    "Extension " + extension.getId() + " or one of its dependencies could not be resolved: "
                            + cause.getMessage(),
                    cause);
            this.extension = extension;
        }
    
        public CoreExtension getExtension() {
            return extension;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/AggregateLogJob.java

            try {
                searchLogHelper.storeSearchLog();
            } catch (final Exception e) {
                logger.error("Failed to store a search log.", e);
                resultBuf.append(e.getMessage()).append("\n");
            }
    
            return resultBuf.toString();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchPartialCustomModelForEachProject.java

            for (BasicGradleProject project : buildModel.getProjects()) {
                SomeToolingModel model = controller.findModel(project, SomeToolingModel.class);
                if (model != null) {
                    result.add(model.getMessage());
                }
            }
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultTestOutputEvent.java

        @Override
        public long getEventTime() {
            return eventTime;
        }
    
        @Override
        public String getDisplayName() {
            return descriptor.getDestination().toString() + ": " + descriptor.getMessage();
        }
    
        @Override
        public TestOutputDescriptor getDescriptor() {
            return descriptor;
        }
    
        @Override
        public String toString() {
            return getDisplayName();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/Failure.java

     *
     * @since 2.4
     */
    public interface Failure {
    
        /**
         * Returns a short message (typically one line) for the failure.
         *
         * @return the failure message
         */
        @Nullable
        String getMessage();
    
        /**
         * Returns a long description of the failure. For example, a stack trace.
         *
         * @return a long description of the failure
         */
        @Nullable
        String getDescription();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/internal/buildevents/BuildFailureIntegrationTest.groovy

            executer.requireIsolatedDaemons()
            executer.requireDaemon()
    
            buildFile << """
    class BadException extends Exception {
       String getMessage() {
         throw new NullPointerException()
       }
    }
    
    throw new BadException()
    """
            when:
            fails("help")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:10:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/score/ScoreUpdater.java

                } catch (final Exception e) {
                    logger.warn("Failed to update scores.", e);
                    resultBuf.append(e.getMessage()).append('\n');
                }
            });
            return resultBuf.toString();
        }
    
        protected void addScoreBooster(final ScoreBooster scoreBooster) {
            scoreBoosterList.add(scoreBooster);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestFrameworkFailure.java

            this.description = description;
            this.causes = causes;
            this.className = className;
            this.stacktrace = stacktrace;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        @Override
        public String getDescription() {
            return description;
        }
    
        @Override
        public List<? extends Failure> getCauses() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/exception/SIndexOutOfBoundsExceptionTest.java

        @Test
        public void testSIndexOutOfBoundsExceptionString() {
            final ClIndexOutOfBoundsException clIndexOutOfBoundsException = new ClIndexOutOfBoundsException("hoge");
            assertThat(clIndexOutOfBoundsException.getMessage(), is("hoge"));
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top