Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 4,869 for message2 (0.16 sec)

  1. src/main/java/org/codelibs/fess/validation/FessActionValidator.java

     */
    package org.codelibs.fess.validation;
    
    import org.lastaflute.core.message.UserMessages;
    import org.lastaflute.core.message.supplier.UserMessagesCreator;
    import org.lastaflute.web.servlet.request.RequestManager;
    import org.lastaflute.web.validation.ActionValidator;
    
    public class FessActionValidator<MESSAGES extends UserMessages> extends ActionValidator<MESSAGES> {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessBuilder.java

     * The worker action is supplied with a {@link WorkerProcessContext} which it can use to receive messages from and send messages to the server process (ie this process).
     * </p>
     *
     * <p>The server process (ie this process) can send messages to and receive message from the worker process using the methods on {@link WorkerProcess#getConnection()}.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/LogHeaderFormatter.java

    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    
    import java.util.List;
    
    public interface LogHeaderFormatter {
        /**
         * Given a message, return possibly-styled output for displaying message meant to categorize
         * other messages "below" it, if any.
         */
        List<StyledTextOutputEvent.Span> format(String description, String status, boolean failed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            protected String message;
    
            public ApiErrorResponse message(final String message) {
                this.message = message;
                return this;
            }
    
            public ApiErrorResponse message(final VaMessenger<FessMessages> validationMessagesLambda) {
                final FessMessages messages = new FessMessages();
                validationMessagesLambda.message(messages);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug

    Bixia Zheng <******@****.***> 1583166655 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 02 16:34:34 UTC 2020
    - 83 bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue67547.go

    func _[P []int | struct{}]() {
    	type A = []int
    	var a A
    	var p P
    	// preserve target type name A in error messages when using Alias types
    	a = p // ERRORx `cannot assign struct{} \(in P\) to (A|\[\]int)`
    	_ = a
    }
    
    func _[P any]() {
    	type A = P
    	var x A
    	// keep "constrained by" for aliased type parameters in error messages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/diag/level.go

    import (
    	"strings"
    )
    
    // Level is the severity level of a message.
    type Level struct {
    	sortOrder int
    	name      string
    }
    
    func (l Level) String() string {
    	return l.name
    }
    
    func (l Level) IsWorseThanOrEqualTo(target Level) bool {
    	return l.sortOrder <= target.sortOrder
    }
    
    var (
    	// Info level is for informational messages
    	Info = Level{2, "Info"}
    
    	// Warning level is for warning messages
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

            private final int max;
            private int count;
    
            public MessageCollectingChangeVisitor(ImmutableCollection.Builder<String> messages, int max) {
                this.messages = messages;
                this.max = max;
            }
    
            @Override
            public boolean visitChange(Change change) {
                messages.add(change.getMessage());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java

                    logger.debug("{}:{}", query, boost);
                }
                return convertPhraseQuery(context, phraseQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue65593.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    const run = false
    
    func f() {
    	if !run {
    		return
    	}
    
    	messages := make(chan struct{}, 1)
    main:
    	for range messages {
    		break main
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 21:07:10 UTC 2024
    - 319 bytes
    - Viewed (0)
Back to top