Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,317 for wrong1 (0.11 sec)

  1. test/range4.go

    	_ = yield(1) && yield(2)
    }
    
    func testfunc0() {
    	j := 0
    	for range yield4x {
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over yield4x:", j)
    		panic("testfunc0")
    	}
    
    	j = 0
    	for _ = range yield4 {
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over yield4:", j)
    		panic("testfunc0")
    	}
    }
    
    func testfunc1() {
    	bad := false
    	j := 1
    	for i := range yield4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 16:00:53 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolverTest.java

            assertEquals(4, res.getVertices().size(), "wrong # of vertices in the resulting graph after resolver");
            assertEquals(
                    2,
                    res.getExcidentEdges(v1).size(),
                    "wrong # of excident edges in the resulting graph entry after resolver");
    
            assertEquals(
                    1,
                    res.getIncidentEdges(v2).size(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. test/range.go

    	for range alphabet {
    		n++
    	}
    	if n != 26 {
    		println("for range: wrong count", n, "want 26")
    		panic("fail")
    	}
    	n = 0
    	for _ = range alphabet {
    		n++
    	}
    	if n != 26 {
    		println("for _ = range: wrong count", n, "want 26")
    		panic("fail")
    	}
    	n = 0
    	for _, _ = range alphabet {
    		n++
    	}
    	if n != 26 {
    		println("for _, _ = range: wrong count", n, "want 26")
    		panic("fail")
    	}
    	s := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 05:50:54 UTC 2017
    - 8.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/NetworkOperationBackOffAndRetryTest.groovy

                new SocketException("something went wrong"),
                new SocketTimeoutException("something went wrong"),
                new HttpHostConnectException(new IOException("something went wrong"), null, null),
                new HttpErrorStatusCodeException("something", "something", 503, "something"),
                new RuntimeException("with cause", new SocketTimeoutException("something went wrong"))
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 04:09:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/vet/testdata/print/print.go

    	fmt.Printf("%e", "hi")                      // ERROR "Printf format %e has arg \x22hi\x22 of wrong type string"
    	fmt.Printf("%E", true)                      // ERROR "Printf format %E has arg true of wrong type bool"
    	fmt.Printf("%f", "hi")                      // ERROR "Printf format %f has arg \x22hi\x22 of wrong type string"
    	fmt.Printf("%F", 'x')                       // ERROR "Printf format %F has arg 'x' of wrong type rune"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/NetworkingIssueVerifierTest.groovy

            "ConnectionClosedException"                                 | new ConnectionClosedException("something went wrong")
            "HttpHostConnectException"                                  | new HttpHostConnectException(new IOException("something went wrong"), null, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. src/sync/atomic/atomic_test.go

    			t.Fatalf("wrong x.i after swap: x.i=%#x val+1=%#x", x.i.Load(), val+1)
    		}
    		x.i.Store(val + 1)
    		if x.i.CompareAndSwap(val, val+2) {
    			t.Fatalf("should not have swapped %#x %#x", val, val+2)
    		}
    		if x.i.Load() != val+1 {
    			t.Fatalf("wrong x.i after swap: x.i=%#x val+1=%#x", x.i.Load(), val+1)
    		}
    	}
    	if x.before != magic32 || x.after != magic32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  8. test/const1.go

    )
    
    func f(int)
    
    func main() {
    	f(Int8)             // ERROR "convert|wrong type|cannot"
    	f(Minus1)           // ERROR "convert|wrong type|cannot"
    	f(Uint8)            // ERROR "convert|wrong type|cannot"
    	f(Const)            // OK
    	f(Float32)          // ERROR "convert|wrong type|cannot"
    	f(Float64)          // ERROR "convert|wrong type|cannot"
    	f(ConstFloat)       // ERROR "truncate"
    	f(ConstFloat - 0.5) // OK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

    * Where:
    $LOCATION line: 42
    
    * What went wrong:
    Execution failed for null.
    {info}> {normal}org.gradle.internal.buildevents.TestCompilationFailureException (no error message)
    
    * Try:
    $INFO
    $SCAN
    ==============================================================================
    
    {failure}3: {normal}{failure}Task failed with an exception.{normal}
    -----------
    * What went wrong:
    <error>
    
    * Try:
    $STACKTRACE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/align_test.go

    func cmpT1(p, q *T1) {
    	if *p != *q {
    		panic("comparison test wrong")
    	}
    }
    
    //go:noinline
    func cmpT2(p, q *T2) {
    	if *p != *q {
    		panic("comparison test wrong")
    	}
    }
    
    //go:noinline
    func cmpA2(p, q *A2) {
    	if *p != *q {
    		panic("comparison test wrong")
    	}
    }
    
    //go:noinline
    func cmpA4(p, q *A4) {
    	if *p != *q {
    		panic("comparison test wrong")
    	}
    }
    
    //go:noinline
    func cmpA8(p, q *A8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 19:06:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top