Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for testObj (1.16 sec)

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

                }
    
                repositories {
                   maven { url "${mavenRepo.uri}" }
                }
    
                dependencies {
                    conf 'org.test:a:1.0'
                    conf 'org.test:b:1.0'
                }
    
                task checkDeps {
                    doLast {
                        def result = configurations.conf.incoming.resolutionResult
                        result.allComponents {
    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. test/recover.go

    		*s += v
    	}
    	if recover() != nil {
    		*s += 100
    	}
    }
    
    func test8a() (r int) {
    	defer varargs(&r, 1, 2, 3)
    	panic(0)
    }
    
    func test8b() (r int) {
    	defer varargs(&r, 4, 5, 6)
    	return
    }
    
    func test8() {
    	if test8a() != 106 || test8b() != 15 {
    		println("wrong value")
    		die()
    	}
    }
    
    type I interface {
    	M()
    }
    
    // pointer receiver, so no wrapper in i.M()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                }
            }.publish()
    
            when:
            buildFile << """
                dependencies {
                    implementation platform(project(":platform"))
                    implementation "org.test:b:1.9"
                }
            """
    
    
            moduleA.pom.expectGet()
            moduleA.moduleMetadata.expectGet()
            moduleA.artifact.expectGet()
    
            then:
            succeeds ":compileJava"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

                apply plugin: 'java-library'
    
                dependencies {
                    implementation(project(":b")) {
                        capabilities {
                            requireCapability("org.gradle.test:b-my-feature")
                        }
                    }
                }
    
                task verifyClasspath {
                    dependsOn(configurations.compileClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedArtifactOrderingIntegrationTest.groovy

                }
                project(":a") {
                    dependencies {
                        common files("a-lib.jar")
                        common project(":b")
                        common "org.test:B:1.0"
                    }
                }
                project(":b") {
                    dependencies {
                        common project(":c")
                        common files("b-lib.jar")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

        }
    
        void "can version listing can use module identifier to return the version list"() {
            withLister([testA: [1, 2, 3], testB: [1, 2]])
            given:
            repository {
                'org:testA:1'()
                'org:testA:2'()
                'org:testA:3'()
                'org:testB:1'()
                'org:testB:2'()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. test/codegen/shift.go

    func lshSigned(v8 int8, v16 int16, v32 int32, v64 int64, x int) {
    	// amd64:"TESTB"
    	_ = x << v8
    	// amd64:"TESTW"
    	_ = x << v16
    	// amd64:"TESTL"
    	_ = x << v32
    	// amd64:"TESTQ"
    	_ = x << v64
    }
    
    // We want to avoid generating a test + panicshift for these cases.
    func lshSignedMasked(v8 int8, v16 int16, v32 int32, v64 int64, x int) {
    	// amd64:-"TESTB"
    	_ = x << (v8 & 7)
    	// amd64:-"TESTW"
    	_ = x << (v16 & 15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *                no support for deprecated version 1 names provided now,
     *                eliminated global variables for current test & suite,
     *                moved (renamed) _TestResult here from TestDB.h. (JDS)
     *
     *  05-Sep-2004   Added internal test interface. (JDS)
     *
     *  23-Apr-2006   Moved doxygen comments into header.
     *                Added type marker to CU_FailureRecord.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. test/codegen/slices.go

    	return make([]int, 0)
    }
    
    // ---------------------- //
    //   Nil check of &s[0]   //
    // ---------------------- //
    // See issue 30366
    func SliceNilCheck(s []int) {
    	p := &s[0]
    	// amd64:-`TESTB`
    	_ = *p
    }
    
    // ---------------------- //
    //   Init slice literal   //
    // ---------------------- //
    // See issue 21561
    func InitSmallSliceLiteral() []int {
    	// amd64:`MOVQ\t[$]42`
    	return []int{42}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. test/codegen/comparisons.go

    	}
    	return 0
    }
    
    func UintLtZero(a uint8, b uint16, c uint32, d uint64) int {
    	// amd64: -`(TESTB|TESTW|TESTL|TESTQ|JCC|JCS)`
    	// arm64: -`(CMPW|CMP|BHS|BLO)`
    	if a < 0 || b < 0 || c < 0 || d < 0 {
    		return 1
    	}
    	return 0
    }
    
    func UintGeqZero(a uint8, b uint16, c uint32, d uint64) int {
    	// amd64: -`(TESTB|TESTW|TESTL|TESTQ|JCS|JCC)`
    	// arm64: -`(CMPW|CMP|BLO|BHS)`
    	if a >= 0 || b >= 0 || c >= 0 || d >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top