Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,239 for message3 (0.12 sec)

  1. istioctl/pkg/util/formatting/formatter_test.go

    	)
    
    	msgs := diag.Messages{firstMsg, secondMsg}
    	output, _ := Print(msgs, YAMLFormat, false)
    
    	expectedOutput := `- code: B1
      documentationUrl: ` + url.ConfigAnalysis + `/b1/
      level: Error
      message: 'Explosion accident: the bubble is too big'
      origin: SoapBubble
    - code: C1
      documentationUrl: ` + url.ConfigAnalysis + `/c1/
      level: Warning
      message: 'Collapse danger: the castle is too old'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/WebSocketListener.kt

       * messages.
       */
      open fun onOpen(
        webSocket: WebSocket,
        response: Response,
      ) {
      }
    
      /** Invoked when a text (type `0x1`) message has been received. */
      open fun onMessage(
        webSocket: WebSocket,
        text: String,
      ) {
      }
    
      /** Invoked when a binary (type `0x2`) message has been received. */
      open fun onMessage(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/LogEventSerializerTest.groovy

            result.logLevel == LogLevel.LIFECYCLE
            result.message == MESSAGE
            result.throwable.getClass() == event.throwable.getClass()
            result.throwable.message == event.throwable.message
            result.throwable.stackTrace == event.throwable.stackTrace
            result.buildOperationId == new OperationIdentifier(42L)
        }
    
        def "can serialize LogEvent messages"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pkg/log/uds_test.go

    		json.Unmarshal([]byte(srv.messages[0]), &got[0])
    		json.Unmarshal([]byte(srv.messages[1]), &got[1])
    		if !reflect.DeepEqual(got, want) {
    			t.Errorf("received log messages, got %v want %v", got, want)
    		}
    	}
    
    	{
    		t.Log("test sending log with specified time")
    
    		// Clean up all the mssages, and log again. Check that buffer is cleaned up properly.
    		srv.messages = make([]string, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 01:05:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationTrait.groovy

            def expectedDeprecations = messages
                .findAll { problem -> problem.severity == WARNING }
            def expectedFailures = messages
                .findAll { problem -> problem.severity == ERROR }
    
            expectedDeprecations.forEach { warning ->
                expectThatExecutionOptimizationDisabledWarningIsDisplayed(executer, warning.message, warning.id, warning.section)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

        }
    
        try {
          if (pong != null) {
            writer!!.writePong(pong)
          } else if (messageOrClose is Message) {
            val message = messageOrClose as Message
            writer!!.writeMessageFrame(message.formatOpcode, message.data)
            synchronized(this) {
              queueSize -= message.data.size.toLong()
            }
          } else if (messageOrClose is Close) {
            val close = messageOrClose as Close
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    absl::StatusOr<std::vector<std::string>> ListDirectory(
        absl::string_view directory);
    
    template <class MessageT>
    absl::StatusOr<MessageT> ReadBinaryProto(const std::string& binary_file_path) {
      MessageT message;
      TF_RETURN_IF_ERROR(
          tsl::ReadBinaryProto(tsl::Env::Default(), binary_file_path, &message));
      return message;
    }
    
    }  // namespace stablehlo::quantization::io
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenFailOnSeverityLogger.java

        }
    
        /**
         * A simple implementation which always logs messages of level WARN
         * according to the format outlined above.
         */
        @Override
        public void warn(String msg) {
            super.warn(msg);
            logLevelRecorder.record(Level.WARN);
        }
    
        /**
         * Perform single parameter substitution before logging the message of level
         * WARN according to the format outlined above.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/MultiEndPointQueue.java

            // waiting endpoint, even if there are multiple waiting to do work
            EndPointQueue selected = waiting.isEmpty() ? null : waiting.get(0);
            while (!queue.isEmpty()) {
                InterHubMessage message = queue.peekFirst();
                switch (message.getDelivery()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top