Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 492 for testB (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

            resolve.expectGraph {
                root(":", ":test:") {
                    edge('org:testA:1.0', 'org:testB:1.0')
                        .byConflictResolution("On capability org.test:cap we like testB better")
                    module('org:testB:1.0')
                }
            }
    
            where:
            rule << [
                "select(candidates.find { it.id.module == 'testB'})",
                "select('org:testB:1.0')",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftXCTestAddDiscoveryBundle.groovy

            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
            ]
        }
    
        final XCTestSourceFileElement alternateFooTestSuite = new XCTestSourceFileElement("FooTestSuite") {
            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
                passingTestCase("testB")
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. test/codegen/issue22703.go

    	foo511()
    }
    
    // Nil checks before calling interface methods.
    // We need it only when the offset is large.
    
    func callMethodSmallOffset(i I) {
    	// amd64:-"TESTB"
    	i.foo001()
    }
    
    func callMethodLargeOffset(i I) {
    	// amd64:"TESTB"
    	i.foo511()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 03 20:20:54 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                rootProject.name = 'testA'
                gradle.rootProject {
                    def c = configurations.create('compile')
                    def d = configurations.create('default')
                    group = 'test'
                    version = '1.2'
                    def jar = tasks.create("jar", Jar) {
                        dependsOn c
                        archiveBaseName = "test"
                        destinationDirectory = buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalSwiftXCTestRemoveDiscoveryBundle.groovy

            List<XCTestCaseElement> testCases = [
                passingTestCase("testA"),
                passingTestCase("testB")
            ]
        }
    
        final XCTestSourceFileElement alternateFooTestSuite = new XCTestSourceFileElement("FooTestSuite") {
            List<XCTestCaseElement> testCases = [
                passingTestCase("testA")
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/work_prune.txt

    # This test makes sure workspace mode's handling of the module graph
    # is compatible with module pruning. The graph we load from either of
    # the workspace modules should be the same, even if their graphs
    # don't overlap.
    #
    # This is the module graph in the test:
    #
    #  example.com/a -> example.com/b v1.0.0 -> example.com/q v1.1.0
    #  example.com/p -> example.com/q v1.0.0
    #
    # If we didn't load the whole graph and didn't load the dependencies of b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 14:30:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_vendor_prune.txt

    # This test exercises that vendoring works properly using the workspace in the
    # the work_prune test case.
    
    go work vendor
    cmp vendor/modules.txt modules.txt.want
    cmp vendor/example.com/b/b.go b/b.go
    cmp vendor/example.com/q/q.go q1_1_0/q.go
    go list -m -f '{{.Version}}' example.com/q
    stdout '^v1.1.0$'
    
    go list -f '{{.Dir}}' example.com/q
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]q
    go list -f '{{.Dir}}' example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.7K 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/cover_coverpkg_with_init.txt

    # packages); prior to the fix for #58770 Go 1.20 would show 100%
    # coverage. For packages "x" and "f" (which have no tests), check for
    # 0% stmts covered (as opposed to "no test files").
    
    go test -count=1 -coverprofile=cov.dat -coverpkg=./... ./...
    stdout '^\s*\?\s+M/n\s+\[no test files\]'
    stdout '^\s*M/x\s+coverage: 0.0% of statements'
    stdout '^\s*M/f\s+coverage: 0.0% of statements'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_coverprofile_multipkg.txt

    # run for a collection of packages, mostly independent (hence tests can
    # be done in parallel) and in the original bug, temp coverage profile
    # files were not being properly qualified and were colliding, resulting
    # in a corrupted final profile. Actual content of the packages doesn't
    # especially matter as long as we have a mix of packages with tests and
    # multiple packages without tests.
    
    [short] skip
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 17:02:36 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top