Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,213 for message2 (0.18 sec)

  1. pkg/log/default.go

    	return registerScope(DefaultScopeName, "Unscoped logging messages.", 1),
    		registerScope(GrpcScopeName, "logs from gRPC", 3)
    }
    
    var defaultScope, grpcScope = registerDefaultScopes()
    
    // Fatal outputs a message at fatal level.
    func Fatal(fields any) {
    	defaultScope.Fatal(fields)
    }
    
    // Fatalf uses fmt.Sprintf to construct and log a message at fatal level.
    func Fatalf(format string, args ...any) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Socket control messages
    
    package unix
    
    import "unsafe"
    
    // UnixCredentials encodes credentials into a socket control message
    // for sending to another process. This can be used for
    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    	b := make([]byte, CmsgSpace(SizeofUcred))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

            return daemon;
        }
    
        @Override
        public void dispatch(Message message) throws DaemonConnectionException {
            LOG.debug("thread {}: dispatching {}", Thread.currentThread().getId(), message.getClass());
            try {
                dispatchLock.lock();
                try {
                    connection.dispatch(message);
                    connection.flush();
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java

                try {
                    fileAuthService.delete(entity);
                    saveInfo(messages -> messages.addSuccessCrudDeleteCrudTable(GLOBAL));
                } catch (final Exception e) {
                    logger.warn("Failed to process a request.", e);
                    throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToDeleteCrudTable(GLOBAL, buildThrowableMessage(e)));
                }
            }).orElse(() -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

    import com.intellij.openapi.project.Project
    import com.intellij.util.messages.MessageBus
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTopics
    
    /**
     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
     * Analysis API topics ([KotlinModificationTopics]), the message bus provided by [getMessageBus] should be used, not the [Project]'s message bus.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/SynchronizedDispatchConnection.java

        }
    
        public void dispatchAndFlush(T message) {
            if (!(message instanceof OutputMessage)) {
                LOGGER.debug("thread {}: dispatching {}", Thread.currentThread().getId(), message);
            }
            lock.lock();
            try {
                if (dispatching) {
                    // Safety check: dispatching a message should not cause the thread to dispatch another message (eg should not do any logging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top