Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 427 for rctest (0.16 sec)

  1. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/buildSrc/src/main/kotlin/myproject.xctest-conventions.gradle.kts

    // tag::test-report[]
    plugins {
        id("xctest")
    }
    
    extensions.configure<SwiftXCTestSuite>() {
        binaries.configureEach {
            // Disable the test report for the individual test task
            runTask.get().reports.html.required = false
        }
    }
    
    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vet_internal.txt

    ! go vet a/a_test.go
    stderr '^package command-line-arguments \(test\)\n\ta[/\\]a_test.go:4:3: use of internal package'
    
    ! go vet a
    stderr '^package a\n\ta[/\\]a.go:5:3: use of internal package'
    
    go vet b/b.go
    ! stderr 'use of internal package'
    
    ! go vet b/b_test.go
    stderr '^package command-line-arguments \(test\)\n\tb[/\\]b_test.go:4:3: use of internal package'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 27 21:13:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_lazy_test_horizon.txt

    # This file demonstrates the effect of lazy loading on the selected
    # versions of test dependencies.
    
    # The package import graph used in this test looks like:
    #
    # m ---- a
    #  \     |
    #   \    a_test ---- b
    #    \               |
    #     x              b_test
    #     |                    \
    #     x_test -------------- c
    #
    # And the module dependency graph looks like:
    #
    # m -- a.1 -- b.1 -- c.2
    #  \
    #   x.1 ------------ c.1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 30 18:05:18 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. src/crypto/rc4/rc4_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package rc4
    
    import (
    	"bytes"
    	"fmt"
    	"testing"
    )
    
    type rc4Test struct {
    	key, keystream []byte
    }
    
    var golden = []rc4Test{
    	// Test vectors from the original cypherpunk posting of ARC4:
    	//   https://groups.google.com/group/sci.crypt/msg/10a300c9d21afca0?pli=1
    	{
    		[]byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.xctest.properties

    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 691 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xctest-variant-task-graph.png

    xctest-variant-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_fail_fast.txt

    [short] skip
    
    # test fail fast
    ! go test ./failfast_test.go -run='TestFailingA' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    ! go test ./failfast_test.go -run='TestFailing[AB]' -failfast=false
    stdout -count=2 'FAIL - '
    
    # mix with non-failing tests
    ! go test ./failfast_test.go -run='TestA|TestFailing[AB]' -failfast=true
    stdout -count=1 'FAIL - '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_lazy_downgrade.txt

    module example.com/a
    
    go 1.17
    
    require example.com/b v0.1.0
    -- a/a.go --
    package a
    -- a/a_test.go --
    package a_test
    
    import _ "example.com/b"
    
    -- b1/go.mod --
    module example.com/b
    
    go 1.17
    
    require example.com/c v0.1.0
    -- b1/b.go --
    package b
    -- b1/b_test.go --
    package b_test
    import _ "example.com/c"
    
    -- b2/go.mod --
    module example.com/b
    
    go 1.17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/cover/testdata/pkgcfg/a/a_test.go

    package a_test
    
    import (
    	"cfg/a"
    	"testing"
    )
    
    func TestA(t *testing.T) {
    	a.A(0)
    	var aat a.Atyp
    	at := &aat
    	at.Set(42)
    	println(at.Get())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:48:40 UTC 2022
    - 144 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_test.txt

    -- go.mod.empty --
    module m
    
    -- a/a.go --
    package a
    
    -- a/a_test.go --
    package a_test
    
    import _ "rsc.io/quote"
    
    -- b/b.go --
    package b
    
    import _ "m/a"
    
    -- b/b_test.go --
    package b_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top