Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Test1 (0.06 sec)

  1. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    ab9f66b (HEAD -> master) add pkg
    7f800d2 (origin/master, origin/HEAD) README
    -- .checkout/pkg.go --
    package p
    
    import "vcs-test.swtch.com/go/test1-svn-git/git-README-only/pkg"
    
    const _ = pkg.Message
    -- .checkout/other/pkg.go --
    package other
    
    import _ "vcs-test.swtch.com/go/test1-svn-git/git-README-only/other"
    -- .checkout/tiny/tiny.go --
    package tiny
    -- .checkout/.svn-log --
    <?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_skip.txt

    go test -v -skip 1 skip_test.go
    ! stdout Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    
    go test -v -skip 2/3 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*ExampleTest1
    ! stdout Test2/3
    
    go test -v -skip 2/4 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    stdout RUN.*ExampleTest1
    
    go test -v -skip Example skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 17:40:22 UTC 2023
    - 755 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_pattern.txt

    -- go.mod --
    module m
    
    go 1.16
    -- sleepy1/p_test.go --
    package p
    
    import (
    	"testing"
    	"time"
    )
    
    func Test1(t *testing.T) {
    	time.Sleep(200 * time.Millisecond)
    }
    -- sleepy2/p_test.go --
    package p
    
    import (
    	"testing"
    	"time"
    )
    
    func Test1(t *testing.T) {
    	time.Sleep(200 * time.Millisecond)
    }
    -- sleepybad/p.go --
    package p
    
    import ^
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 683 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_test_race_issue56370.txt

    func New() func(error) bool {
    	return func(error) bool {
    		return false
    	}
    }
    
    -- filter/filter_test.go --
    
    package filter_test
    
    import (
    	"testing"
    
    	"issue.56370/filter"
    )
    
    func Test1(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test2(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test3(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 19:41:54 UTC 2022
    - 576 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

        }
    
        @Test
        fun `recognizes relative paths pointing outside the root directory`() {
            val instance = createFromPaths(listOf("../../test1"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(rootDir.parentFile.parentFile.resolve("test1")))
        }
    
        @Test
        fun `if created as case-sensitive, does not recognize paths in a different case`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top