Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 591 for GetMessage (0.24 sec)

  1. maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3Reader.java

                        delegate.read(reader, strict, source != null ? source.toApiSource() : null);
                return new Model(model);
            } catch (XMLStreamException e) {
                throw new XmlPullParserException(e.getMessage(), null, e);
            }
        }
    
        /**
         *
         * @param reader a reader object.
         * @param strict a strict object.
         * @throws IOException IOException if any.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 20 07:14:01 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

            hideCause = threadLocal();
        }
    
        private void writeObject(java.io.ObjectOutputStream out) throws IOException {
            // Ensure fields are initialized before serialization
            String ignored = getMessage();
            out.defaultWriteObject();
        }
    
        private ThreadLocal<Boolean> threadLocal() {
            return new HideStacktrace();
        }
    
        @Override
        public List<String> getResolutions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-models/src/main/java/org/gradle/kotlin/dsl/tooling/models/EditorReport.java

     */
    
    package org.gradle.kotlin.dsl.tooling.models;
    
    import javax.annotation.Nullable;
    
    
    public interface EditorReport {
    
        EditorReportSeverity getSeverity();
    
        String getMessage();
    
        @Nullable
        EditorPosition getPosition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 850 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/esreq/AdminEsreqAction.java

                    buf.append(line);
                }
            } catch (final Exception e) {
                throwValidationError(messages -> messages.addErrorsFailedToReadRequestFile(GLOBAL, e.getMessage()),
                        () -> asListHtml(this::saveToken));
            }
    
            final CurlRequest curlRequest = getCurlRequest(header);
            if (curlRequest == null) {
                final String msg = header;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BaseRemoteBuildCacheServiceHandle.java

            if (LOGGER.isWarnEnabled()) {
                if (logStackTraces) {
                    LOGGER.warn(description, failure);
                } else {
                    LOGGER.warn(description + ": " + failure.getMessage());
                }
            }
        }
    
        protected void onCacheDisabledDueToFailure(BuildCacheKey key, Operation operation, Throwable failure) {
        }
    
        @Override
        public void close() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/ExhaustiveLinesSearcherTest.groovy

            when:
            comparer.assertLinesContainedIn(expectedLines, actualLines)
    
            then:
            def e = thrown(exception)
            e.getMessage().startsWith(message)
    
            where:
            expectedLines           | actualLines           || exception                                    || message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestFailure.java

        public TestFailure(String message, String stackTrace, String exceptionType) {
            this.message = message;
            this.stackTrace = stackTrace;
            this.exceptionType = exceptionType;
        }
    
        public String getMessage() {
            return message;
        }
    
        public String getStackTrace() {
            return stackTrace;
        }
    
        public String getExceptionType() {
            return exceptionType;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java

        private static final long serialVersionUID = 1L;
    
        public BadPaddingRuntimeException(final BadPaddingException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1008 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java

        private static final long serialVersionUID = 1L;
    
        public IllegalBlockSizeRuntimeException(final IllegalBlockSizeException cause) {
            super("ECL0105", new Object[] { cause.getMessage() }, cause);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

                } catch (Throwable e) {
                    // Calling e.getMessage() here can cause infinite recursion.
                    // It happens if e is CircularEvaluationException itself, because getMessage calls formatEvaluationChain.
                    // It can also happen for some other custom exceptions that wrap CircularEvaluationException and call its getMessage inside their.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top