Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Sall (0.04 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
          GTEST_LOG_(FATAL) << "Condition " #condition " failed. "
    
    // An all-mode assert to verify that the given POSIX-style function
    // call returns 0 (indicating success).  Known limitation: this
    // doesn't expand to a balanced 'if' statement, so enclose the macro
    // in {} if you need to use it as the only statement in an 'if'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

                @Provides
                Integer createInteger(Callable<Integer> factory) {
                    return factory.call()
                }
    
                @Provides
                String createString(Callable<String> factory) {
                    return factory.call()
                }
    
                @Provides
                Callable<Integer> createIntFactory() {
                    return { 123 }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    doLast {
                        println("configurations = " + project.configurations.all)
                    }
                }
    
                task all {
                    dependsOn 'broken', 'anotherBroken'
                }
            """
    
            when:
            configurationCacheFails 'all'
    
            then:
            executed(':all')
            configurationCache.assertStateStored() // does not fail
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            artifactTransforms["nested-producer.jar.red.green"] == [ProjectDependencyInstrumentingArtifactTransform.class.name]
            buildOperations.all(ExecuteWorkBuildOperationType).size() == 4
            buildOperations.all(SnapshotTransformInputsBuildOperationType).size() == 4
            buildOperations.all(ExecuteTransformActionBuildOperationType).size() == 4
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // case with any set of parameters you want. Google Test defines a number
    // of functions for generating test parameters. They return what we call
    // (surprise!) parameter generators. Here is a  summary of them, which
    // are all in the testing namespace:
    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    //                               begin+step+step, ...}. The values do not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            property.explicit
        }
    
        def "'#label' vs undefined-safety"() {
            given:
            initial.each { operation ->
                operation.call(property)
            }
    
            when:
            operations.each {operation -> operation.call(property) }
    
            then:
            expected == null || property.getOrNull() == ImmutableMap.copyOf(expected)
            expected != null || !property.present
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         */
        private ResolverResults resolveGraphInBuildOperation() {
            return buildOperationRunner.call(new CallableBuildOperation<ResolverResults>() {
                @Override
                public ResolverResults call(BuildOperationContext context) {
                    runDependencyActions();
                    runBeforeResolve();
    
                    ResolverResults results;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            given:
            serviceImplementation()
            adhocTaskUsingUndeclaredService(null)
    
            when:
            succeeds 'broken'
    
            then:
            outputDoesNotContain "'Task#usesService'"
        }
    
        def "does nag when service is used by task without a corresponding usesService call and feature preview is enabled"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

    		implementation (group: 'org', name: 'foo', version:'1.3.3')
    	}
    }
    
    project(':tool') {
    	dependencies {
    		implementation project(':api')
    		implementation project(':impl')
    	}
    
    	configurations.all { resolutionStrategy.failOnVersionConflict() }
    }
    """
    
            expect:
            run("tool:dependencies")
        }
    
        void "resolves module version conflicts to the latest version by default"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                it.assertHasCause("Failed to transform a.jar (project :a) to match attributes {artifactType=jar, color=green}.")
                // TODO - should collect all failures rather than stopping on first failure
            }
    
            when:
            configurationCacheFails(":resolve")
    
            then:
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
Back to top