Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Sall (0.07 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. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      virtual ~Test();
    
      // Sets up the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::SetUpTestCase() before running the first
      // test in test case Foo.  Hence a sub-class can define its own
      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this test case.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            def it = file('dest/two.b').readLines().iterator()
            it.next().startsWith('one')
            it.next().startsWith('three')
        }
    
        def "all lines removed"() {
            given:
            buildScript '''
                task (copy, type:Copy) {
                    from "src/two/two.b"
                    into "dest"
                    def lineNumber = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. 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)
Back to top