Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,808 for Paused (0.17 sec)

  1. src/cmd/go/testdata/script/mod_run_flags_issue64738.txt

    # Regression test for https://go.dev/issue/64738:
    # a bug in 'go run' caused flags arguments after the requested package to
    # also be parsed as cmd/go flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:08:32 UTC 2024
    - 211 bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/DefaultMultiCauseException.java

            Throwable cause = causes.get(0);
            printWriter.print("Caused by: ");
            cause.printStackTrace(printWriter);
        }
    
        private void printMultiCauseStackTrace(PrintWriter printWriter) {
            for (int i = 0; i < causes.size(); i++) {
                Throwable cause = causes.get(i);
                printWriter.format("Cause %s: ", i + 1);
                cause.printStackTrace(printWriter);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. testing/performance/docs/performance-bisect.md

            runner.targetVersions = ['2.14']
            runner.useDaemon = true
    ...
            where:
            // source file change causes a single project, single source set, single file to be recompiled.
            // header file change causes a single project, two source sets, some files to be recompiled.
            // recompile all sources causes all projects, all source sets, all files to be recompiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K 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. test/fixedbugs/issue7867.go

    	_ = t
    	_ = t
    }
    `
    
    func main() {
    	fmt.Println("package main")
    	types := []string{
    		// These types always passed
    		"bool", "int", "rune",
    		"*int", "uintptr",
    		"float32", "float64",
    		"chan struct{}",
    		"map[string]struct{}",
    		"func()", "func(string)error",
    
    		// These types caused compilation failures
    		"complex64", "complex128",
    		"struct{}", "struct{n int}", "struct{e error}", "struct{m map[string]string}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 825 bytes
    - Viewed (0)
  6. src/runtime/race/testdata/regression_test.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code patterns that caused problems in the past.
    
    package race_test
    
    import (
    	"testing"
    )
    
    type LogImpl struct {
    	x int
    }
    
    func NewLog() (l LogImpl) {
    	c := make(chan bool)
    	go func() {
    		_ = l
    		c <- true
    	}()
    	l = LogImpl{}
    	<-c
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testplugin/testdata/issue53989/main.go

    // license that can be found in the LICENSE file.
    
    // Issue 53989: the use of jump table caused a function
    // from the plugin jumps in the middle of the function
    // to the function with the same name in the main
    // executable. As these two functions may be compiled
    // differently as plugin needs to be PIC, this causes
    // crash.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/issue53989/p"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 751 bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinter.java

                List<Failure> causes = failure.getCauses();
                if (causes.size() == 1) {
                    printRecursively("Caused by: ", prefix, failure, causes.get(0));
                } else {
                    for (int i = 0; i < causes.size(); i++) {
                        printRecursively(String.format("Cause %s: ", i + 1), prefix, failure, causes.get(i));
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      virtual int Wait() = 0;
    
      // Returns true if the death test passed; that is, the test process
      // exited during the test, its exit status matches a user-supplied
      // predicate, and its stderr output matches a user-supplied regular
      // expression.
      // The user-supplied predicate may be a macro expression rather
      // than a function pointer or functor, or else Wait and Passed could
      // be combined.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_retract_v1.0.0-unused.txt

    -- .mod --
    module example.com/retract
    
    go 1.15
    
    -- .info --
    {"Version":"v1.0.0-unused"}
    
    -- retract.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:12:37 UTC 2020
    - 122 bytes
    - Viewed (0)
Back to top