Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 245 for cmdtest (0.16 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitConsoleLoggingIntegrationTest.groovy

            fails("test")
    
            then:
            outputContains("""
                ${maybeParentheses('badTest')} FAILED
                    java.lang.RuntimeException: bad
                        at org.gradle.SomeTest.beBad(SomeTest.java:${lineNumberOf('throw new RuntimeException("bad")')})
                        at org.gradle.SomeTest.badTest(SomeTest.java:${lineNumberOf('beBad();')})
            """.stripIndent())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test_unix.go

    // Copyright 2019 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.
    
    //go:build unix
    
    package cgotest
    
    import "syscall"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 254 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue29563.go

    // license that can be found in the LICENSE file.
    
    //go:build cgo && !windows
    
    // Issue 29563: internal linker fails on duplicate weak symbols.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 363 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9510.go

    // license that can be found in the LICENSE file.
    
    //go:build cgo && !((ppc64 || ppc64le) && internal)
    
    // Test that we can link together two different cgo packages that both
    // use the same libgcc function.
    
    package cgotest
    
    import (
    	"runtime"
    	"testing"
    
    	"cmd/cgo/internal/test/issue9510a"
    	"cmd/cgo/internal/test/issue9510b"
    )
    
    func test9510(t *testing.T) {
    	if runtime.GOARCH == "arm" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 606 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/issue21897b.go

    // Copyright 2017 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.
    
    //go:build !darwin || !cgo || internal
    
    package cgotest
    
    import "testing"
    
    func test21897(t *testing.T) {
    	t.Skip("test runs only on darwin+cgo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 308 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/typeparam.go

    // Copyright 2021 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.
    
    package cgotest
    
    // #include <stddef.h>
    import "C"
    
    func generic[T, U any](t T, u U) {}
    
    func useGeneric() {
    	const zero C.size_t = 0
    
    	generic(zero, zero)
    	generic[C.size_t, C.size_t](0, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 353 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue52611.go

    // license that can be found in the LICENSE file.
    
    //go:build cgo
    
    // Issue 52611: inconsistent compiler behaviour when compiling a C.struct.
    // No runtime test; just make sure it compiles.
    
    package cgotest
    
    import (
    	_ "cmd/cgo/internal/test/issue52611a"
    	_ "cmd/cgo/internal/test/issue52611b"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 406 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue42495.go

    // Copyright 2020 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.
    
    package cgotest
    
    // typedef struct { } T42495A;
    // typedef struct { int x[0]; } T42495B;
    import "C"
    
    //export Issue42495A
    func Issue42495A(C.T42495A) {}
    
    //export Issue42495B
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 366 bytes
    - Viewed (0)
  9. src/net/internal/cgotest/empty_test.go

    // Copyright 2023 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.
    
    package cgotest
    
    import "testing"
    
    // Nothing to test here.
    // The test is that the package compiles at all.
    // See resstate.go.
    func Test(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 18:09:52 UTC 2024
    - 317 bytes
    - Viewed (0)
  10. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

    load(
        "//tensorflow:tensorflow.bzl",
        "if_not_windows",
        "lrt_if_needed",
        "tf_cc_binary",
        "tf_copts",
    )
    load(
        "//tensorflow/core/platform:rules_cc.bzl",
        "cc_test",
    )
    
    def tf_gen_op_wrappers_fuzz(
            name,
            op_def_src,
            api_def_srcs = [],
            kernel_deps = []):
        """
        Generates fuzzers for several groups of ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top