Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 591 for GetMessage (0.51 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                        } else {
                            logger.warn("[{}][{}] Failed to analyze a text(size:{}). {}", field, lang, buf.length(), e.getMessage());
                        }
                    }
                    buf.setLength(0);
                }
            }
            if (buf.length() > 0) {
                try {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalTestOutputResult.java

    /**
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 6.0
     */
    public interface InternalTestOutputResult extends InternalOperationResult {
    
        int getDestination();
        String getMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 901 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/WebApiException.java

            super(message);
            this.statusCode = statusCode;
        }
    
        public WebApiException(final int statusCode, final Exception e) {
            this(statusCode, e.getMessage(), e);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/kotlin/dsl/EditorReport.java

    import javax.annotation.Nullable;
    
    
    /**
     * Report to the editor.
     *
     * @since 6.0
     */
    public interface EditorReport {
    
        EditorReportSeverity getSeverity();
    
        String getMessage();
    
        @Nullable
        EditorPosition getPosition();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 899 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

                        result.add(DefaultFileComparisonTestAssertionFailure.create(
                            failure.getRawFailure(),
                            failure.getDetails().getMessage(),
                            failure.getDetails().getClassName(),
                            failure.getDetails().getStacktrace(),
                            failure.getDetails().getExpected(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReason.java

            this.category = category;
            this.message = message;
        }
    
        public CachingDisabledReasonCategory getCategory() {
            return category;
        }
    
        public String getMessage() {
            return message;
        }
    
        @Override
        public String toString() {
            return String.format("%s (%s)", message, category);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/LogEventBuildOperationProgressDetails.java

    /**
     * Build operation observer's view of {@code org.gradle.internal.logging.events.LogEvent}.
     *
     * @since 7.4
     */
    public interface LogEventBuildOperationProgressDetails {
        String getMessage();
    
        Throwable getThrowable();
    
        String getCategory();
    
        LogEventLevel getLevel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 955 bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFatalException.java

     */
    public class CompilationFatalException extends RuntimeException implements CompilationFailedIndicator {
    
        public CompilationFatalException(Throwable cause) {
            super("Unrecoverable compilation error: " + cause.getMessage(), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

                    artifact.updateVersion(version, request.getLocalRepository());
                } catch (RepositoryMetadataResolutionException e) {
                    throw new ArtifactResolutionException(e.getMessage(), artifact, e);
                }
            }
        }
    
        public void transformForInstall(Artifact artifact, ArtifactRepository localRepository) {
            if (artifact.isSnapshot()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

                    return build(source, nsUri, xsr);
                }
            } catch (XMLStreamException | IOException e) {
                throw new PlexusConfigurationException(e.getMessage(), e);
            }
        }
    
        /**
         * @deprecated use {@link #build(StreamSupplier, String)}
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top