Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,869 for message2 (0.15 sec)

  1. pkg/config/analysis/diag/message.go

    func (m *MessageType) Code() string { return m.code }
    
    // Template returns the message template used by the MessageType
    func (m *MessageType) Template() string { return m.template }
    
    // Message is a specific diagnostic message
    // TODO: Implement using Analysis message API
    type Message struct {
    	Type *MessageType
    
    	// The Parameters to the message
    	Parameters []any
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/message.go

    Alexander Zielenski <******@****.***> 1705543770 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

            then:
            def messages = models.left
            messages.size() == 2
            messages[0] == "It works from project :"
            messages[1] == "It works from project :a"
            def model = models.right
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt

    # Checks that source debug information is used in the output error message.
    # CHECK: error: 'tf.Add' op operands don't have broadcast-compatible shapes
    # CHECK: math_ops.add(x, y, name='x_y_sum')
    # CHECK: build_graph(out_dir)
    node: {
      name: "x"
      op: "Placeholder"
      attr: {
        key: "shape"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:00:09 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.debug

    files : [ "org_tensorflow/tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/error-message-with-source-info.pbtxt.fake_py.debug"]
    traces: {
        key  : "x@"
        value: {
          file_line_cols: {
            line      : 1
            col       : 1
          }
        }
    }
    traces: {
        key  : "x_y_sum@"
        value: {
          file_line_cols: {
            line      : 3
            col       : 1
          }
          file_line_cols: {
            line      : 4
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 16 00:15:24 UTC 2020
    - 586 bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

     * a greeting. The greeting is composed of a message and a suffix. The message is compiled into a support
     * library. The suffix is compiled directly into the processor. This makes it easy to test different incremental
     * change scenarios. The message can also be provided with the -Amessage processor argument.
     */
    @CompileStatic
    class HelperProcessorFixture extends AnnotationProcessorFixture {
        String message = "greetings"
        boolean writeResources
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/MessageHub.java

                                if (message instanceof EndOfStream) {
                                    boundedDispatch.endStream();
                                    return;
                                }
                                if (message instanceof ChannelMessage) {
                                    ChannelMessage channelMessage = (ChannelMessage) message;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java

            messages.add(message);
        }
    
        public String toString() {
            return render("");
        }
    
        public String render(String indentation) {
            if (messages.size() == 0) {
                return indentation + "There were no validation errors.";
            }
    
            StringBuilder message = new StringBuilder();
    
            //        if ( messages.size() == 1 )
            //        {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValitdatePluginsTrait.groovy

            def problems = collectedProblems
            assert problems.size() == messages.size()
            problems.any { problem ->
                messages.any { message ->
                    if (message.config) {
                        TextUtil.endLineWithDot(problem.definition.id.displayName) == message.config.label().toString()
                    } else {
                        message.message.contains(TextUtil.endLineWithDot(problem.definition.id.displayName))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. docs_src/websockets/tutorial003_py39.py

            </form>
            <ul id='messages'>
            </ul>
            <script>
                var client_id = Date.now()
                document.querySelector("#ws-id").textContent = client_id;
                var ws = new WebSocket(`ws://localhost:8000/ws/${client_id}`);
                ws.onmessage = function(event) {
                    var messages = document.getElementById('messages')
                    var message = document.createElement('li')
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top