Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for Sall (0.06 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

            cleanup:
            System.clearProperty(customPropertyName)
        }
    
        def "system property activation removes all other profiles that are active by default"() {
            setup:
            String customPropertyName = new UUIDGenerator().generateId()
    
            when:
            pomFile << """
    <project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            call("{ it.conventionProperty = 'value' }", bean);
            assertThat(conventionObject.getConventionProperty(), equalTo("value"));
            assertThat(call("{ it.hasProperty('conventionProperty') }", bean), notNullValue());
            assertThat(call("{ it.conventionProperty }", bean), equalTo((Object) "value"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            when:
            addToGraph(entry1)
            executionPlan.determineExecutionPlan() // this is called between entry groups for an included build (but not the root build) and this call triggers the issue
            addToGraph(entry2)
    
            then:
            noExceptionThrown()
        }
    
        def "runs priority node before other nodes even when scheduled later"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    By default, non-buildable binaries and test suites are hidden from the report. The `dependentComponents` task provides options that allow you to see all dependents by using the `--all` option:
    
    === Example: Dependent components report
    
    .Output of **`gradle dependentComponents --all`**
    ----
    > gradle dependentComponents --all
    include::{snippetsPath}/native-binaries/cunit/tests/dependentComponentsReportAll.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                details == 'A version was not set or explicitly declared as not wanted'
                solutions == [
                    'Call `.version()` to give the alias a version',
                    'Call `.withoutVersion()` to explicitly declare that the alias should not have a version',
                ]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  10. 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)
Back to top