Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for testObj (0.17 sec)

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

                    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')",
                "select('org:testB:1.1')", // we are lenient wrt to the version number
    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/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

            buildA = singleProjectBuildInRootFolder("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies {
                        ${testImplementationConfiguration} "org.test:b1:1.0"
                    }
                """
            }
    
            buildB = multiProjectBuildInSubFolder("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/CompositeProjectSubstitutionCrossVersionSpec.groovy

            buildA = singleProjectBuildInRootFolder("buildA") {
                buildFile << """
                    apply plugin: 'java-library'
                    dependencies {
                        testImplementation "org.test:b1:1.0"
                    }
                """
                settingsFile << """
                    includeBuild 'buildB'
                    includeBuild 'buildC'
                """
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailure.java

     * @since 7.6
     */
    @Incubating
    public abstract class TestFailure {
    
        /**
         * Returns the list of causes.
         * <p>
         * The result is typically non-empty for multi-assertion failures, e.g. for {@code org.test4j.MultipleFailuresError}, where the individual failures are in the returned list.
         *
         * @return the cause failures.
         */
        public abstract List<TestFailure> getCauses();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            buildA = singleProjectBuildInRootFolder("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies {
                        ${testImplementationConfiguration} "org.test:b1:1.0"
                    }
                """
                settingsFile << """
                    includeBuild 'buildB'
                    includeBuild 'buildC'
                """
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. test/codegen/bits.go

    	a[0] &= 200
    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    // Check AND masking on arm64 (Issue #19857)
    
    func and_mask_1(a uint64) uint64 {
    	// arm64:`AND\t`
    	return a & ((1 << 63) - 1)
    }
    
    func and_mask_2(a uint64) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top