Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 493 for u8test (0.11 sec)

  1. test/ken/modconst.go

    		b = a % 1
    		i8test(a, b, 1)
    		b = a % 2
    		i8test(a, b, 2)
    		b = a % 3
    		i8test(a, b, 3)
    		b = a % 4
    		i8test(a, b, 4)
    		b = a % 5
    		i8test(a, b, 5)
    		b = a % 6
    		i8test(a, b, 6)
    		b = a % 7
    		i8test(a, b, 7)
    		b = a % 8
    		i8test(a, b, 8)
    		b = a % 10
    		i8test(a, b, 10)
    		b = a % 8
    		i8test(a, b, 8)
    		b = a % 20
    		i8test(a, b, 20)
    		b = a % 32
    		i8test(a, b, 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 9.2K bytes
    - Viewed (0)
  2. test/ken/divconst.go

    		b = a / 1
    		i8test(a, b, 1)
    		b = a / 2
    		i8test(a, b, 2)
    		b = a / 3
    		i8test(a, b, 3)
    		b = a / 4
    		i8test(a, b, 4)
    		b = a / 5
    		i8test(a, b, 5)
    		b = a / 6
    		i8test(a, b, 6)
    		b = a / 7
    		i8test(a, b, 7)
    		b = a / 8
    		i8test(a, b, 8)
    		b = a / 10
    		i8test(a, b, 10)
    		b = a / 8
    		i8test(a, b, 8)
    		b = a / 20
    		i8test(a, b, 20)
    		b = a / 32
    		i8test(a, b, 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_test.txt

    -- b/b.go --
    package b
    
    -- b/b_test.go --
    package b_test
    
    import "testing"
    
    func Test(t *testing.T) {}
    
    -- c_test/go.mod --
    module example.com/c_test
    
    -- c_test/umm.go --
    // Package c_test is the non-test package for its import path!
    package c_test
    
    -- c_test/c_test_test.go --
    package c_test_test
    
    import "testing"
    
    func Test(t *testing.T) {}
    
    -- d_test/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 17 21:24:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

            addEmptyTestClass("ACTest")
            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
            addEmptyTestClass("AbTest")
    
            String expectedTestMessages = """
    executed Test ${maybeParentheses('test')}(AATest)
    executed Test ${maybeParentheses('test')}(ACTest)
    executed Test ${maybeParentheses('test')}(AZTest)
    executed Test ${maybeParentheses('test')}(AbTest)
    executed Test ${maybeParentheses('test')}(AdTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/14434")
        def "can run tests in parallel with project dependencies"() {
            given:
            httpServer.expectConcurrent(':a:test', ':b:test', ':c:test', ':d:test')
            httpServer.start()
    
            settingsFile << """
                include 'a', 'b', 'c', 'd'
            """
            buildFile << """
                allprojects {
                    tasks.withType(AbstractScalaCompile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/q.test$'
    stdout '^example.com/q_test \[example.com/q.test\]$'
    stdout '^example.com/r.test$'
    stdout '^example.com/r_test \[example.com/r.test\]$'
    stdout '^example.com/s.test$'
    stdout '^example.com/s_test \[example.com/s.test\]$'
    stdout '^example.com/t.test$'
    stdout '^example.com/t_test \[example.com/t.test\]$'
    stdout '^example.com/u.test$'
    stdout '^example.com/u_test \[example.com/u.test\]$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
Back to top