Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for testObj (0.18 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

    }
    """
    
            expect:
            fails 'retrieve'
            failure.assertHasCause("A dependency was declared from configuration 'something' to configuration 'unknown' which is not declared in the descriptor for test:b:1.0.")
        }
    
        def "correctly handles configuration mapping rule '#rule'"() {
            given:
            buildFile << """
    configurations {
        compile
    }
    dependencies {
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            singleProjectBuildInRootDir("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies {
                        testImplementation "org.test:b1:1.0"
    
                        testImplementation "org.test:buildC:1.0"
                        testImplementation "org.buildD:b1:1.0"
                    }
                """
                settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. docs/pl/docs/features.md

    * <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank"><strong>Swagger UI</strong></a>, z interaktywnym interfejsem - odpytuj i testuj swoje API bezpośrednio z przeglądarki.
    
    ![Swagger UI interakcja](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            javaLibrary.assertPublished()
            if (ivyConfiguration == 'compile') {
                javaLibrary.assertApiDependencies('org.gradle.test:b:1.2')
            }
            if (gradleConfiguration != 'compileOnlyApi') {
                javaLibrary.assertRuntimeDependencies('org.gradle.test:b:1.2')
            }
    
            where:
            plugin         | gradleConfiguration | ivyConfiguration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #  else
    #    define CU_EXPORT
    #  endif
    #  if _MSC_VER < 1900
    #    define snprintf _snprintf
    #  endif
    #else
    #  define CU_EXPORT
    #endif  /* WIN32 */
    
    #include "CUError.h"
    #include "TestDB.h"   /* not needed here - included for user convenience */
    #include "TestRun.h"  /* not needed here - include (after BOOL define) for user convenience */
    
    /** Record a pass condition without performing a logical test. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    edge("org:foo:1.0", "org:foo:1.1").byConflictResolution("between versions 1.1 and 1.0").byConstraint('transitive dependency constraint')
                    project(":b", "test:b:") {
                        configuration = "conf"
                        noArtifacts()
                        constraint("org:foo:1.1", "org:foo:1.1").byConstraint('transitive dependency constraint')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                        capability('cap')
                    }
                }
                'org:testB:1.0' {
                    variant('runtime') {
                        capability('org', 'testB', '1.0')
                        capability('cap')
                    }
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:testA:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top