Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,298 for causeD (0.18 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/exceptions/DefaultMultiCauseExceptionTest.groovy

            outstr.toString().contains("Caused by: ${RuntimeException.name}: cause1")
        }
    
        def printStacktraceWithNestedMultipleCauses() {
            RuntimeException causeA = new RuntimeException('causeA')
            RuntimeException causeB = new RuntimeException('causeB')
            RuntimeException cause1 = new TestMultiCauseException('cause1', [causeA, causeB])
            RuntimeException causeC = new RuntimeException('causeC')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    			panic("these inputs caused a crash!")
    		}
    	})
    }
    
    func FuzzInt(f *testing.F) {
    	f.Add(0)
    	f.Fuzz(func(t *testing.T, a int) {
    		if a != 0 {
    			panic("this input caused a crash!")
    		}
    	})
    }
    
    func FuzzUint(f *testing.F) {
    	f.Add(uint(0))
    	f.Fuzz(func(t *testing.T, a uint) {
    		if a != 0 {
    			panic("this input caused a crash!")
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

           |     Caused by:      {description}line1{normal}
           |     Caused by:      {description}line2{normal}
           |     Caused by:      {description}line3{normal}
           |     Caused by:      {description}line4{normal}
           |     Caused by:      {description}lastLine{normal}""",
    
                // 6
                """       | Error:              {description}line0{normal}
           |     Caused by:      {description}line1{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        java.lang.Exception: ouch
    """
        }
    
        def "optionally shows causes"() {
            testLogging.getShowCauses() >> true
            def cause = new RuntimeException("oops")
            def exception = new Exception("ouch", cause)
    
            expect:
            formatter.format(testDescriptor, [exception]) == """\
        java.lang.Exception: ouch
    
            Caused by:
            java.lang.RuntimeException: oops
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

         * @param content the message to log
         * @param error the error that caused this log
         */
        void debug(CharSequence content, Throwable error);
    
        /**
         * Sends an exception to the user in the <b>debug</b> error level.
         * The stack trace for this exception will be output when this error level is enabled.
         *
         * @param error the error that caused this log
         */
        void debug(Throwable error);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. maven-slf4j-provider/src/test/java/org/apache/maven/slf4j/MavenSimpleLoggerTest.java

            Exception suppressed = new IllegalStateException("suppressed", causeOfSuppressed);
            suppressed.addSuppressed(new IllegalArgumentException(
                    "suppressed suppressed", new ArrayIndexOutOfBoundsException("suppressed suppressed cause")));
            Exception cause = new IllegalArgumentException("cause");
            cause.addSuppressed(suppressed);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/net/63116.md

    The [DNSError] type now wraps errors caused by timeouts or cancellation.
    For example, `errors.Is(someDNSErr, context.DeadlineExceedeed)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 13:37:36 UTC 2024
    - 198 bytes
    - Viewed (0)
  8. test/fixedbugs/issue15470.dir/a.go

    package a
    
    import "io"
    
    type T interface {
    	M0(_ int)
    	M1(x, _ int) // _ (blank) caused crash
    	M2() (x, _ int)
    }
    
    type S struct{}
    
    func (S) M0(_ int) {}
    func (S) M1(x, _ int) {}
    func (S) M2() (x, _ int) { return }
    func (_ S) M3() {}
    
    // Snippet from x/tools/godoc/analysis/analysis.go.
    // Offending code from #5470.
    type Link interface {
    	Start() int
    	End() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 00:42:13 UTC 2016
    - 429 bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param repository The repository that caused the error, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
        public InvalidRepositoryException(String message, Repository repository, Throwable cause) {
            super(message, cause);
            this.repository = repository;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/NonGradleCause.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.exceptions;
    
    /**
     * An exception that is not caused by a Gradle specific problem. e.g. a problem caused by a compilation error.
     * This serves as a marker interface.
     */
    public interface NonGradleCause {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 851 bytes
    - Viewed (0)
Back to top