Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for Here (0.03 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        else -> actualBranch
    }
    
    /**
     * The build environment.
     *
     * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected,
     *          since this whole object is kept in the classloader between builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                val spec = scopeSpecs[scopeId]
                require(spec != null)
                // TODO - a scope can currently potentially have multiple export and local ClassLoaders but we're assuming one here
                //  Rather than fix the assumption here, it would be better to rework the scope implementation so that it produces no more than one export and one local ClassLoader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidPerformanceTestFixture.groovy

    import org.gradle.performance.fixture.AndroidTestProject
    
    @SelfType(AbstractCrossVersionPerformanceTest)
    trait AndroidPerformanceTestFixture {
    
        AndroidTestProject getAndroidTestProject() {
            // We assume here already, since the test may try to cast the returned test project to `IncrementalAndroidTestProject`,
            // which fails when the test project is non-incremental.
            runner.assumeShouldRun()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

        }
    
        @RunFor([
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["largeJavaMultiProject"],
                comment = "We only test the multi-project here since for the monolithic project we would have no cache hits. This would mean we actually would test incremental compilation."
            )
        ])
        def "clean assemble for abi change with local cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/JdkToolsInitializer.java

    @ServiceScope(Scope.Global.class)
    public interface JdkToolsInitializer {
        /**
         * Ensures that the JDK tools are visible on the system ClassLoader. Not really a great idea, but here for backwards
         * compatibility.
         */
        void initializeJdkTools();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/build.gradle.kts

        implementation(libs.errorProneAnnotations)
        implementation(libs.julToSlf4j)
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
        implementation(libs.guava)
    
        // GSon is not strictly required here but removing it moves the dependency in the distribution from lib to lib/plugins
        // TODO Check if this is an issue
        runtimeOnly(libs.gson)
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.log4jToSlf4j)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. testing/public-api-tests/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        // TODO Can we apply less here?
        id("gradlebuild.internal.java")
    
    //    id("gradlebuild.repositories")
    //    id("gradlebuild.integration-tests")
    }
    
    val testRepo = configurations.dependencyScope("testRepo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

            // many software projects embedding Maven and is unlikely to change.
            // If this ever does change, we can easily copy the code directly here.
            DefaultRepositorySystemSession session = MavenRepositorySystemUtils.newSession()
            session.setTransferListener(new AbstractTransferListener() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

                        def version = new File(searchDir, 'version.txt').text
                        ${mavenCentralRepository()}
                        dependencies {
                            // Dynamically changing the classpath here surfaces problems with the ClassLoaderCache
                            classpath "org.apache.commons:commons-lang3:\${version}"
                        }
                    }
    
                    task doStringOp {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/LayoutToPropertiesConverter.java

            allBuildOptions.addAll(new LoggingConfigurationBuildOptions().getAllOptions()); // TODO maybe a new converter also here
            allBuildOptions.addAll(new WelcomeMessageBuildOptions().getAllOptions()); // TODO maybe a new converter also here
            allBuildOptions.addAll(new DaemonBuildOptions().getAllOptions());
            allBuildOptions.addAll(new ParallelismBuildOptions().getAllOptions());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top