Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 4,869 for message2 (0.12 sec)

  1. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

                    logger.debug("{}:{}", query, boost);
                }
                return convertTermRangeQuery(context, termRangeQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/errors.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package errors
    
    // Testing precise operand formatting in error messages
    // (matching messages are regular expressions, hence the \'s).
    func f(x int, m map[string]int) {
    	// no values
    	_ = f /* ERROR "f(0, m) (no value) used as value" */ (0, m)
    
    	// built-ins
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

    
    /**
     * Provides entry points for constructing and emitting deprecation messages.
     * The basic deprecation message structure is "Summary. DeprecationTimeline. Context. Advice. Documentation."
     * <p>
     * The deprecateX methods in this class return a builder that guides creation of the deprecation message.
     * Summary is populated by the deprecateX methods in this class.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

    // The following explicit specializations of protobuf `type_caster`s for
    // specific protobuf message types are there to have higher priority over those
    // defined in `native_proto_caster.h` during the resolution process. This is
    // because the type casters in `native_proto_caster.h`, which allow seamlessly
    // exchanging protobuf messages across c++-python boundaries, potentially
    // without serialization, fail in the open-source environment.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java

                    logger.debug("{}:{}", query, boost);
                }
                return convertPrefixQuery(context, prefixQuery, boost);
            }
            throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY),
                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. docs/bucket/notifications/README.md

    delivery_mode  (number)    set to '1' for non-persistent or '2' for persistent queue
    queue_dir      (path)      staging dir for undelivered messages e.g. '/home/events'
    queue_limit    (number)    maximum limit for undelivered messages, defaults to '100000'
    comment        (sentence)  optionally add a comment to this setting
    ```
    
    Or environment variables
    
    ```
    KEY:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/serializer/StyledTextOutputEventSerializerTest.groovy

                new ListSerializer<StyledTextOutputEvent.Span>(
                    new SpanSerializer(serializerFactory.getSerializerFor(StyledTextOutput.Style.class))))
        }
    
        def "can serialize StyledTextOutputEvent messages"() {
            given:
            List spans = [new StyledTextOutputEvent.Span(StyledTextOutput.Style.Description, "description"),
                          new StyledTextOutputEvent.Span(StyledTextOutput.Style.Error, "error")]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

                            } else if (message instanceof Cancel) {
                                LOGGER.debug("thread {}: Received cancel message from client: {}", Thread.currentThread().getId(), message);
                                cancelQueue.add((Cancel) message);
                            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import javax.tools.JavaFileObject;
    import java.util.Locale;
    import java.util.function.Function;
    
    /**
     * A {@link DiagnosticListener} that consumes {@link Diagnostic} messages, and reports them as Gradle {@link Problems}.
     */
    // If this annotation is not present, all diagnostic messages would be wrapped in a ClientCodeWrapper.
    // We don't need this wrapping feature, hence the trusted annotation.
    @ClientCodeWrapper.Trusted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	// hasVers indicates we're past the first message, forcing someone trying to
    	// make us just allocate a large buffer to at least do the initial part of
    	// the handshake first.
    	if c.haveVers && data[0] == typeCertificate {
    		// Since certificate messages are likely to be the only messages that
    		// can be larger than maxHandshake, we use a special limit for just
    		// those messages.
    		maxHandshakeSize = maxHandshakeCertificateMsg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top