Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,521 for examplev1 (0.1 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

                    specs.forTaskPath(':secondTest').includePackage('example2')
                }
            }
    
            then:
            // 2 test class + 2 test method events
            events.testClassesAndMethods.size() == 4
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/go/printer/testdata/alignment.golden

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package alignment
    
    // ----------------------------------------------------------------------------
    // Examples from issue #7335.
    
    func main() {
    	z := MyStruct{
    		Foo:		"foo",
    		Bar:		"bar",
    		Name:		"name",
    		LongName:	"longname",
    		Baz:		"baz",
    	}
    	y := MyStruct{
    		Foo:			"foo",
    		Bar:			"bar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  3. src/go/printer/testdata/alignment.input

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package alignment
    
    // ----------------------------------------------------------------------------
    // Examples from issue #7335.
    
    func main() {
        z := MyStruct{
            Foo:      "foo",
            Bar:      "bar",
            Name:     "name",
            LongName: "longname",
            Baz:      "baz",
        }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 14 20:40:15 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_badchain_b_v1.0.0.txt

    example.com/badchain/b v1.0.0
    
    -- .mod --
    module example.com/badchain/b
    
    require example.com/badchain/c v1.0.0
    -- .info --
    {"Version":"v1.0.0"}
    -- b.go --
    package b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:00:56 UTC 2019
    - 200 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_badchain_c_v1.1.0.txt

    example.com/badchain/c v1.1.0
    
    -- .mod --
    module badchain.example.com/c
    -- .info --
    {"Version":"v1.1.0"}
    -- c.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 27 20:36:50 UTC 2019
    - 126 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_deprecated_a_v1.9.0.txt

    -- .info --
    {"Version":"v1.9.0"}
    -- .mod --
    // Deprecated: in example.com/deprecated/a@v1.9.0
    module example.com/deprecated/a
    
    go 1.17
    -- go.mod --
    // Deprecated: in example.com/deprecated/a@v1.9.0
    module example.com/deprecated/a
    
    go 1.17
    -- a.go --
    package a
    
    -- cmd/a/a.go --
    package main
    
    import "fmt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 346 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.com_dotname_v1.0.0.txt

    -- .info --
    {"Version":"v1.0.0"}
    -- .mod --
    module example.com/dotname
    
    go 1.16
    -- go.mod --
    module example.com/dotname
    
    go 1.16
    -- .dot/dot.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 10 20:52:20 UTC 2021
    - 159 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_generics_v1.0.0.txt

    example.com/generics v1.0.0
    written by hand
    
    -- .mod --
    module example.com/generics
    
    go 1.18
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/generics
    
    go 1.18
    -- generics.go --
    package generics
    
    type Int interface {
    	~int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 20:37:36 UTC 2022
    - 255 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_missingpkg_v1.0.0.txt

    The deprecated package is present in this version (which is @latest) but
    is deleted in a newer prerelease version.
    
    -- .mod --
    module example.com/missingpkg
    -- .info --
    {"Version":"v1.0.0"}
    -- lib.go --
    package lib
    -- deprecated/deprecated.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:25:56 UTC 2019
    - 265 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/example.com_nest_sub_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is nested below the top-level module.
    
    -- .mod --
    module example.com/nest/sub
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest/sub
    -- y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 261 bytes
    - Viewed (0)
Back to top