Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,239 for message3 (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. hack/lib/logging.sh

      echo "!!! ${timestamp} ${1-}" >&2
      shift
      for message; do
        echo "    ${message}" >&2
      done
    }
    
    # Print an usage message to stderr.  The arguments are printed directly.
    kube::log::usage() {
      echo >&2
      local message
      for message; do
        echo "${message}" >&2
      done
      echo >&2
    }
    
    kube::log::usage_from_stdin() {
      local messages=()
      while read -r line; do
        messages+=("${line}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/generate.main.go

    type messages struct {
    	Messages []message `json:"messages"`
    }
    
    type message struct {
    	Name        string `json:"name"`
    	Code        string `json:"code"`
    	Level       string `json:"level"`
    	Description string `json:"description"`
    	Template    string `json:"template"`
    	Url         string `json:"url"`
    	Args        []arg  `json:"args"`
    }
    
    type arg struct {
    	Name string `json:"name"`
    	Type string `json:"type"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 16:55:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/AsyncDispatch.java

                }
                if (state == State.Stopped) {
                    throw new IllegalStateException("Cannot dispatch message, as this message dispatch has been stopped. Message: " + message);
                }
                queue.add(message);
                condition.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStartupMessageTest.groovy

        }
    
        def "starting message contains subsequent builds message given no unavailable daemons"() {
            given:
            def message = DaemonStartupMessage.generate(0, 0, 0)
    
            expect:
            message.contains(DaemonStartupMessage.STARTING_DAEMON_MESSAGE)
            message.contains(DaemonStartupMessage.SUBSEQUENT_BUILDS_WILL_BE_FASTER)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

       * that enqueued messages were not transmitted.
       */
      fun queueSize(): Long
    
      /**
       * Attempts to enqueue `text` to be UTF-8 encoded and sent as a the data of a text (type `0x1`)
       * message.
       *
       * This method returns true if the message was enqueued. Messages that would overflow the outgoing
       * message buffer will be rejected and trigger a [graceful shutdown][close] of this web socket.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

            return args;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        /**
         * Returns a simple message without a message code.
         *
         * @return simple message without message code
         */
        public final String getSimpleMessage() {
            return simpleMessage;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

                return asJson(new ApiErrorResponse().message(getMessage(messages -> messages.addErrorsUnauthorizedRequest(GLOBAL)))
                        .status(Status.UNAUTHORIZED).result());
            }
            return super.godHandPrologue(runtime);
        }
    
        protected String getMessage(final VaMessenger<FessMessages> validationMessagesLambda) {
            final FessMessages messages = new FessMessages();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientConnectionTest.groovy

        }
    
        def "dispatches messages"() {
            def message = Stub(Message)
    
            when:
            connection.dispatch(message)
    
            then:
            1 * delegate.dispatch(message)
            0 * staleAddressDetector._
        }
    
        def "receives messages"() {
            def message = Stub(Message)
    
            given:
            delegate.receive() >> message
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/README.md

            if !c.Exists(collections.Gateway, resource.NewName(r.Metadata.FullName.Namespace, gwName)) {
                // Messages are defined in galley/pkg/config/analysis/msg/messages.yaml
                // From there, code is generated for each message type, including a constructor function
                // that you can use to create a new validation message of each type.
                msg := msg.NewReferencedResourceNotFound(r, "gateway", gwName)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top