Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 367 for Sall (0.05 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

        private List<DaemonInfo> getDaemonsMatching(Spec<DaemonInfo> spec) {
            lock.lock();
            try {
                List<DaemonInfo> out = new LinkedList<DaemonInfo>();
                List<DaemonInfo> all = getAll();
                for (DaemonInfo d : all) {
                    if (spec.isSatisfiedBy(d)) {
                        out.add(d);
                    }
                }
                return out;
            } finally {
                lock.unlock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         * Returns true if this version always adds a task execution exception around all failures, such as input fingerprinting or property validation failures, rather than only around task action failures.
         */
        boolean isAddsTaskExecutionExceptionAroundAllTaskFailures();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            }
        }
    
        private
        fun checkFingerprint(entryDetails: EntryDetails, layout: ConfigurationCacheRepository.Layout): CheckedFingerprint {
            // Register all included build root directories as watchable hierarchies,
            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/ProjectBuilder.java

     *
     * <p>To create a project instance:</p>
     *
     * <ol>
     *
     * <li>Create a {@code ProjectBuilder} instance by calling {@link #builder()}.</li>
     *
     * <li>Optionally, configure the builder.</li>
     *
     * <li>Call {@link #build()} to create the {@code Project} instance.</li>
     *
     * </ol>
     *
     * <p>You can reuse a builder to create multiple {@code Project} instances.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

                testing {
                    suites {
                        test {
                            useTestNG('${TestNGCoverage.NEWEST}')
                            targets {
                                all {
                                    testTask.configure {
                                        options {
                                            /* left empty */
                                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

        testFixturesImplementation(project(":logging"))
    
        testFixturesImplementation(libs.groovyJson)
    
        performanceTestDistributionRuntimeOnly(project(":distributions-full")) {
            because("so that all Gradle features are available")
        }
    }
    
    performanceTest.registerTestProject<gradlebuild.performance.generator.tasks.JvmProjectGeneratorTask>("javaProject") {
        dependencyGraph.run {
            size = 200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        protected TestFile getDefaultTmpDir() {
            // File.createTempFile sets the location of the temp directory to a static variable on the first call.  This prevents future
            // changes to java.io.tmpdir from having any effect in the same process.  We set this to use a common tmp directory for all
            // tests running in the same process so that we don't have a situation where one process initializes with a tmp directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderEndUserIntegrationTest.groovy

                }
                @Override
                Iterable<String> asArguments() {
                    return test.javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)
                        ? ["--add-opens=java.base/java.lang=ALL-UNNAMED"]
                        : []
                }
            }
            tasks.withType(Test).configureEach {
                jvmArgumentProviders.add(new AddOpensArgProvider(it))
            }
            """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveMetadata.java

         * May be empty, in which case selection falls back to an ecosystem-specific selection strategy.
         */
        List<? extends VariantGraphResolveMetadata> getVariantsForGraphTraversal();
    
        /**
         * Returns the names of all legacy configurations for this component.
         * May be empty, in which case the component should provide at least one variant via {@link #getVariantsForGraphTraversal()}.
         */
        Set<String> getConfigurationNames();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIdentityIntegrationTest.groovy

            when:
            fails()
    
            then:
            failure.assertHasDescription("Execution failed for task ':buildSrc:compileJava'.")
            failure.assertHasCause("Could not resolve all files for configuration ':buildSrc:compileClasspath'.")
            failure.assertHasCause("""Could not find org.test:test:1.2.
    Searched in the following locations:
      - ${m.pom.file.displayUri}
    Required by:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top