Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,869 for message2 (0.23 sec)

  1. pkg/config/analysis/local/context.go

    func (i *istiodContext) Report(c config.GroupVersionKind, m diag.Message) {
    	msgs := i.messages[i.currentAnalyzer]
    	if msgs == nil {
    		msgs = &diag.Messages{}
    		i.messages[i.currentAnalyzer] = msgs
    	}
    	msgs.Add(m)
    }
    
    func (i *istiodContext) SetAnalyzer(analyzerName string) {
    	i.currentAnalyzer = analyzerName
    }
    
    func (i *istiodContext) GetMessages(analyzerNames ...string) diag.Messages {
    	result := diag.Messages{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

         *
         * @throws MojoExecutionException if an unexpected problem occurs.
         * Throwing this exception causes a "BUILD ERROR" message to be displayed.
         * @throws MojoFailureException if an expected problem (such as a compilation failure) occurs.
         * Throwing this exception causes a "BUILD FAILURE" message to be displayed.
         */
        void execute() throws MojoExecutionException, MojoFailureException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue32187.go

    		{"nil pointer dereference #1", "", func() { _ = x == *p }},
    		// TODO(mdempsky): Restore "nil pointer dereference" check. The Go
    		// spec doesn't mandate an order for panics (or even panic
    		// messages), but left-to-right is less confusing to users.
    		{"nil pointer dereference #2", "", func() { _ = *l == r[0] }},
    		{"nil pointer dereference #3", "", func() { _ = *l == any(r[0]) }},
    	}
    
    	for _, tc := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 19 23:02:39 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IncrementalProcessingEnvironment.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.processing;
    
    import javax.annotation.processing.Filer;
    import javax.annotation.processing.Messager;
    import javax.annotation.processing.ProcessingEnvironment;
    import javax.lang.model.SourceVersion;
    import javax.lang.model.util.Elements;
    import javax.lang.model.util.Types;
    import java.util.Locale;
    import java.util.Map;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DocLink.java

     */
    public interface DocLink extends Serializable {
    
        /**
         * The URL to the documentation page.
         */
        String getUrl();
    
        /**
         * A message that tells the user to consult the documentation.
         * There are currently 2 different messages used for this, hence this method.
         */
        String getConsultDocumentationMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/NameValidationIntegrationTest.groovy

        }
    
        void assertFailureDescriptionOrCauseContains(String... messages) {
            try {
                messages.each { failureDescriptionContains(it) }
            } catch (AssertionError ignore) {
                messages.each { failureCauseContains(it) }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. src/crypto/rsa/pkcs1v15.go

    // be the result of hashing the input message using the given hash
    // function. If hash is zero, hashed is signed directly. This isn't
    // advisable except for interoperability.
    //
    // The random parameter is legacy and ignored, and it can be nil.
    //
    // This function is deterministic. Thus, if the set of possible
    // messages is small, an attacker may be able to build a map from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/QueueInitializerTest.groovy

        final Dispatch<InterHubMessage> queue = Mock()
    
        def "does nothing when no stateful messages received"() {
            when:
            initializer.onQueueAdded(queue)
    
            then:
            0 * queue._
        }
    
        def "discards message on end of stream received"() {
            given:
            def closed = new EndOfStream()
    
            initializer.onStatefulMessage(closed)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/errsupport.go

    // license that can be found in the LICENSE file.
    
    // This file implements support functions for error messages.
    
    package types2
    
    // lookupError returns a case-specific error when a lookup of selector sel in the
    // given type fails but an object with alternative spelling (case folding) is found.
    // If structLit is set, the error message is specifically for struct literal fields.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. internal/grid/msg.go

    	OpDisconnectServerMux
    
    	// OpMuxClientMsg contains a message to a client Mux
    	OpMuxClientMsg
    
    	// OpMuxServerMsg contains a message to a server Mux
    	OpMuxServerMsg
    
    	// OpUnblockSrvMux contains a message that a server mux is unblocked with one.
    	// Only Stateful streams has flow control.
    	OpUnblockSrvMux
    
    	// OpUnblockClMux contains a message that a client mux is unblocked with one.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 28 19:22:29 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top