Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,213 for message1 (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

                if (logger.isDebugEnabled()) {
                    logger.debug("No user in SSO request.");
                }
                if (ssoManager.available()) {
                    saveError(messages -> messages.addErrorsSsoLoginError(GLOBAL));
                }
                return redirect(LoginAction.class);
            }
            if (loginCredential instanceof ActionResponseCredential) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    [[logLevels]]
    == Understanding Log levels
    
    There are 6 log levels in Gradle:
    
    [horizontal]
    ERROR:: Error messages
    QUIET:: Important information messages
    WARNING:: Warning messages
    LIFECYCLE:: Progress information messages
    INFO:: Information messages
    DEBUG:: Debug messages
    
    NOTE: The console's rich components (build status and work-in-progress area) are displayed regardless of the log level used.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    	return bytes.Clone(priv[:SeedSize])
    }
    
    // Sign signs the given message with priv. rand is ignored and can be nil.
    //
    // If opts.HashFunc() is [crypto.SHA512], the pre-hashed variant Ed25519ph is used
    // and message is expected to be a SHA-512 hash, otherwise opts.HashFunc() must
    // be [crypto.Hash](0) and the message must not be hashed, as Ed25519 performs two
    // passes over messages to be signed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. internal/grid/connection.go

    			}
    			if m.Op != OpMerged {
    				c.inMessages.Add(1)
    				c.handleMsg(ctx, m, subID)
    				continue
    			}
    			// Handle merged messages.
    			messages := int(m.Seq)
    			c.inMessages.Add(int64(messages))
    			for i := 0; i < messages; i++ {
    				if atomic.LoadUint32((*uint32)(&c.state)) != StateConnected {
    					cancel(ErrDisconnected)
    					return
    				}
    				var next []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top