Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,452 for message1 (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            // Fix the source file name displayed in the error messages
            for (Object message : e.getErrorCollector().getErrors()) {
                if (message instanceof SyntaxErrorMessage) {
                    try {
                        SyntaxErrorMessage syntaxErrorMessage = (SyntaxErrorMessage) message;
                        Field sourceField = SyntaxErrorMessage.class.getDeclaredField("source");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // The symbol "fail" here expands to something into which a message
    // can be streamed.
    
    // This macro is for implementing ASSERT/EXPECT_DEBUG_DEATH when compiled in
    // NDEBUG mode. In this case we need the statements to be executed, the regex is
    // ignored, and the macro must accept a streamed message even though the message
    // is never printed.
    # define GTEST_EXECUTE_STATEMENT_(statement, regex) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                return dstIndex - start;
            }
    
            /*
             * The message provided to batch has a batchLimit that is
             * higher than the current batchLevel so we will now encode
             * that chained message. Before doing so we must increment
             * the batchLevel of the andx message in case it itself is an
             * andx message and needs to perform the same check as above.
             */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    //
    // A [Signature] represents a signature on a note, verified or not.
    //
    // The [Open] function takes as input a signed message
    // and a set of known verifiers. It decodes and verifies
    // the message signatures and returns a [Note] structure
    // containing the message text and (verified or unverified) signatures.
    //
    // # Signing Notes
    //
    // A [Signer] allows signing a text with a given key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

     *  New: `OkHttpClient.Builder.minWebSocketMessageToCompress()` configures a threshold for
        compressing outbound web socket messages. Configure this with 0L to always compress outbound
        messages and `Long.MAX_VALUE` to never compress outbound messages. The default is 1024L which
        compresses messages of size 1 KiB and larger. (Inbound messages are compressed or not based on
        the web socket server's configuration.)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

            build.forTasks('hang').withCancellationToken(cancellation.token()).run(resultHandler)
            sync.waitForAllPendingCalls(resultHandler)
            cancellation.cancel()
            Thread.sleep(200) // The daemon seems to drop messages arriving the same time
            connector.disconnect()
            resultHandler.finished()
    
            then:
            resultHandler.assertFailedWith(BuildCancelledException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

            result.testClass("UsefulNPETest")
                .testFailed("testFailingGetMessage", equalTo('Could not determine failure message for exception of type UsefulNPETest$1: java.lang.RuntimeException'))
        }
    
        String failureAssertionError(String message) {
            return "${assertionFailureClassName}: ${message}".toString()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            final int totalProblems
            final int uniqueProblems
            final List<String> messages
    
            ProblemsSummary(int totalProblems, int uniqueProblems, List<String> messages) {
                this.totalProblems = totalProblems
                this.uniqueProblems = uniqueProblems
                this.messages = messages
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  9. src/log/slog/doc.go

    The higher the level, the more severe the event.
    This package defines constants for the most common levels,
    but any int can be used as a level.
    
    In an application, you may wish to log messages only at a certain level or greater.
    One common configuration is to log messages at Info or higher levels,
    suppressing debug logging until it is needed.
    The built-in handlers can be configured with the minimum level to output by
    setting [HandlerOptions.Level].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. internal/logger/logger.go

    				VersionID: req.VersionID,
    				Objects:   objects,
    			},
    		},
    	}
    
    	if trace != nil {
    		entry.Trace = &log.Trace{
    			Message:   message,
    			Source:    trace,
    			Variables: tags,
    		}
    	} else {
    		entry.Message = message
    	}
    
    	if anonFlag {
    		entry.API.Args.Bucket = HashString(entry.API.Args.Bucket)
    		entry.API.Args.Object = HashString(entry.API.Args.Object)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top