Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for for_tests (0.14 sec)

  1. src/cmd/internal/test2json/testdata/issue23036.test

    === RUN   TestActualCase
    --- FAIL: TestActualCase (0.00s)
            foo_test.go:14: Differed.
                    Expected: MyTest:
                    --- FAIL: Test output from other tool
                    Actual: not expected
    FAIL
    exit status 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:12:12 UTC 2018
    - 286 bytes
    - Viewed (0)
  2. src/go/doc/testdata/examples/whole_function_external.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 foo_test
    
    func foo(int)
    
    func Example() {
    	foo(42)
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 233 bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/expectedFiles/root.iml.xml

          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="inheritedJdk"/>
        <orderEntry type="sourceFolder" forTests="false"/>
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/commons-collections/commons-collections/3.2.2/@SHA1@/commons-collections-3.2.2.jar!/"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. .idea/runConfigurations/Low_Level_API_FIR_Lincheck_Tests.xml

          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":analysis:low-level-api-fir:tests-jdk11:test" />
              <option value="--tests" />
              <option value="*" />
            </list>
          </option>
          <option name="vmOptions" />
        </ExternalSystemSettings>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 01 17:29:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/examples/whole_function.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 foo_test
    
    func Foo(x int) {
    }
    
    func Example() {
    	fmt.Println("Hello, world!")
    	// Output: Hello, world!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 274 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_compile_binary.txt

    env GO111MODULE=off
    
    ! go test -c compile_binary/...
    stderr 'build comment'
    
    -- compile_binary/foo_test.go --
    // +build foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 04 15:10:03 UTC 2019
    - 136 bytes
    - Viewed (0)
  7. src/go/doc/testdata/examples/inspect_signature.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 foo_test
    
    import (
    	"bytes"
    	"io"
    )
    
    func getReader() io.Reader { return nil }
    
    func do(b bytes.Reader) {}
    
    func Example() {
    	getReader()
    	do()
    	// Output:
    }
    
    func ExampleIgnored() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 353 bytes
    - Viewed (0)
  8. src/go/doc/testdata/examples/whole_file.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 foo_test
    
    import "fmt"
    
    type X int
    
    func (X) Foo() {
    }
    
    func (X) TestBlah() {
    }
    
    func (X) BenchmarkFoo() {
    }
    
    func Example() {
    	fmt.Println("Hello, world!")
    	// Output: Hello, world!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 353 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

        def testCode() {
            settingsFile << "rootProject.name = 'testproject'\n"
            buildFile.text = simpleJavaProject()
    
            def classesDir = 'file("build/classes/moreTests")'
            buildFile << """
                sourceSets {
                    moreTests {
                        java.srcDir "src/test"
                        ${destinationDirectoryCode(classesDir)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/go/doc/testdata/examples/values.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 foo_test
    
    // Variable declaration with fewer values than names.
    
    func f() (int, int) {
    	return 1, 2
    }
    
    var a, b = f()
    
    // Need two examples to hit playExample.
    
    func ExampleA() {
    	_ = a
    }
    
    func ExampleB() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 23:13:45 UTC 2022
    - 377 bytes
    - Viewed (0)
Back to top