Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,452 for message2 (0.14 sec)

  1. internal/logger/logger.go

    				VersionID: req.VersionID,
    				Objects:   objects,
    			},
    		},
    	}
    
    	if trace != nil {
    		entry.Trace = &log.Trace{
    			Message:   message,
    			Source:    trace,
    			Variables: tags,
    		}
    	} else {
    		entry.Message = message
    	}
    
    	if anonFlag {
    		entry.API.Args.Bucket = HashString(entry.API.Args.Bucket)
    		entry.API.Args.Object = HashString(entry.API.Args.Object)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/ztunnelserver.go

    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            then:
            result*.message == ["incoming1", "incoming2"]
        }
    
        static class TestConnection implements RemoteConnection<Message> {
            private final def lock = new Object()
            private final def endInput = new Received("end")
            private final def receiveQueue = new LinkedList<Message>()
    
            @Override
            void dispatch(Message message) throws MessageIOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/flag/flag.go

    // For an integer valued flag x, the default output has the form
    //
    //	-x int
    //		usage-message-for-x (default 7)
    //
    // The usage message will appear on a separate line for anything but
    // a bool flag with a one-byte name. For bool flags, the type is
    // omitted and if the flag name is one byte the usage message appears
    // on the same line. The parenthetical default is omitted if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

         * even entire message) that simultaneously:
         *
         * - _shouldn't_ be null, so we don't annotate it with @Nullable
         *
         * - _can_ be null without causing a runtime failure (because we don't want the interesting
         *   details of precondition failure to be hidden by an exception we throw about an unexpectedly
         *   null _failure message_)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            registry.register(OutputMessage.class, new OutputMessageSerializer(registry.build(OutputEvent.class)));
    
            // Default for everything else
            registry.useJavaSerialization(Message.class);
    
            return registry.build(Message.class);
        }
    
        private static class SuccessSerializer implements Serializer<Success> {
            private final Serializer<Object> javaSerializer = new DefaultSerializer<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. internal/config/notify/help.go

    	formatComment     = `'namespace' reflects current bucket/object list and 'access' reflects a journal of object operations, defaults to 'namespace'`
    	queueDirComment   = `staging dir for undelivered messages e.g. '/home/events'`
    	queueLimitComment = `maximum limit for undelivered messages, defaults to '100000'`
    )
    
    // Help template inputs for all notification targets
    var (
    	HelpWebhook = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.WebhookEndpoint,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    type TypeCheckingResults []*TypeCheckingResult
    
    func (rs TypeCheckingResults) String() string {
    	var messages []string
    	for _, r := range rs {
    		message := r.String()
    		if message != "" {
    			messages = append(messages, message)
    		}
    	}
    	return strings.Join(messages, "\n")
    }
    
    // String converts the result to human-readable form as a string.
    func (r *TypeCheckingResult) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	"k8s.io/klog/v2"
    )
    
    const WebSocketProtocolHeader = "Sec-Websocket-Protocol"
    
    // The Websocket subprotocol "channel.k8s.io" prepends each binary message with a byte indicating
    // the channel number (zero indexed) the message was sent on. Messages in both directions should
    // prefix their messages with this channel byte. When used for remote execution, the channel numbers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/crypto/tls/key_agreement.go

    // agreement protocol by generating and processing key exchange messages.
    type keyAgreement interface {
    	// On the server side, the first two methods are called in order.
    
    	// In the case that the key agreement protocol doesn't use a
    	// ServerKeyExchange message, generateServerKeyExchange can return nil,
    	// nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top