Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 480 for testOk (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

            given:
            mavenRepo.with {
                module('org.test', 'leaf', '1.0').publish()
                def leaf2 = module('org.test', 'leaf', '1.1').publish()
                module('org.test', 'a', '1.0')
                    .dependsOn('org.test', 'leaf', '0.9')
                    .withModuleMetadata()
                    .publish()
                module('org.test', 'b', '1.0')
                    .dependsOn(leaf2, reason: 'second reason')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    /*-----------------------------------------------------------------
     * CU_Test, CU_pTest
     *-----------------------------------------------------------------*/
    /** CUnit test case data type.
     *  CU_Test is a double linked list of unit tests.  Each test has
     *  a name, a callable test function, and a flag for whether the 
     *  test is active and thus executed during a  test run.  A test 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRemoteDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                root(":", ":test:") {
                    module("test:a:1.2")
                }
            }
    
            when:
            server.resetExpectations()
            m.pom.expectHead()
            m.artifact.expectHead()
    
            executer.withArgument("--refresh-dependencies")
            run("checkDeps")
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("test:a:1.2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. src/runtime/pprof/testdata/test32

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 528 bytes
    - Viewed (0)
  5. src/runtime/pprof/testdata/test64

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 760 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/DependencyResolveRulesIntegrationTest.groovy

                            assert it.requested.toString() == 'org.gradle.test:a:1.2'
                            assert it.target.toString() == 'org.gradle.test:a:1.2'
                            it.useVersion('1.3')
                            assert it.target.toString() == 'org.gradle.test:a:1.3'
                        }
                    }
                }
    """
            resolve.prepare("conf")
    
            expect:
            succeeds(":b:checkDeps")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    test ./...', and even 'go test .'). In this mode, go test compiles
    and tests each of the packages listed on the command line. If a
    package test passes, go test prints only the final 'ok' summary
    line. If a package test fails, go test prints the full test output.
    If invoked with the -bench or -v flag, go test prints the full
    output even for passing package tests, in order to display the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_cwd_newline.txt

    stdout '^ok$'  # 'go test' combines the test's stdout into stderr
    
    go test -v .
    ! stdout panic
    ! stderr panic
    stdout '^ok$'  # 'go test' combines the test's stdout into stderr
    
    [cgo] go tool cgo main.go
    [cgo] grep '//line .*'${/}'link'${/}'main\.go:1:1' _obj/main.cgo1.go
    [cgo] ! grep 'uh-oh' _obj/main.cgo1.go
    
    -- $WORK/go.mod --
    module example
    go 1.19
    -- $WORK/main.go --
    package main
    
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    	t.tester = t.tester.ClusterScope()
    	return t
    }
    
    func (t *Tester) Namer(namer func(int) string) *Tester {
    	t.tester = t.tester.Namer(namer)
    	return t
    }
    
    func (t *Tester) AllowCreateOnUpdate() *Tester {
    	t.tester = t.tester.AllowCreateOnUpdate()
    	return t
    }
    
    func (t *Tester) GeneratesName() *Tester {
    	t.tester = t.tester.GeneratesName()
    	return t
    }
    
    func (t *Tester) ReturnDeletedObject() *Tester {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  10. src/internal/testenv/exec.go

    //     in its Cancel function
    //   - if the test has a deadline, adds a Context timeout and WaitDelay
    //     for an arbitrary grace period before the test's deadline expires,
    //   - fails the test if the command does not complete before the test's deadline, and
    //   - sets a Cleanup function that verifies that the test did not leak a subprocess.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top