Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,326 for Paused (0.49 sec)

  1. test/used.go

    	x < x                  // ERROR "x < x .* not used"
    	x >= x                 // ERROR "x >= x .* not used"
    	x > x                  // ERROR "x > x .* not used"
    	*tp                    // ERROR "\*tp .* not used"
    	slice[0]               // ERROR "slice\[0\] .* not used"
    	m[1]                   // ERROR "m\[1\] .* not used"
    	len(slice)             // ERROR "len\(slice\) .* not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 08:39:17 UTC 2020
    - 6K bytes
    - Viewed (0)
  2. tests/testdata/certs/dns/cert-chain-unused.pem

    Faseela K <******@****.***> 1686686394 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 19:59:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/ShortExceptionFormatterTest.groovy

    """
        }
    
        def "optionally shows causes"() {
            def causeCause = new RuntimeException("oops").tap { stackTrace = createCauseCauseTrace() }
            def cause = new IllegalArgumentException("ouch", causeCause).tap { stackTrace = createCauseTrace() }
            def exception = new Exception("argh", cause).tap { stackTrace = createStackTrace() }
    
            testLogging.showCauses >> true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top