Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 216 for Here (0.07 sec)

  1. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

                    }
                }
            """
            actualProjectDir.file("settings.gradle").createFile()
            executer.beforeExecute {
                // Use `new File` here to avoid canonicalization of the path
                def symlinkedProjectDir = new File(symlink, "projectDir")
                assert symlinkedProjectDir.absolutePath != actualProjectDir.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Click on the _"Configuration"_ tab to break this stage into component parts,
    exposing the cause of the slowness.
    
    image::performance/build-scan-configuration-breakdown.png[title="Build scan configuration breakdown"]
    
    Here you can see the scripts and plugins applied to the project in descending order of how long they took to apply.
    The slowest plugin and script applications are good candidates for optimization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. testing/performance/docs/performance-bisect.md

    <!-- START doctoc generated TOC please keep comment here to allow auto update -->
    <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
    **Table of Contents**  *generated with [DocToc](https://github.com/thlorenz/doctoc)*
    
    - [Tracking down performance regressions with `git bisect`](#tracking-down-performance-regressions-with-git-bisect)
      - [Identify the test which caused the regression](#identify-the-test-which-caused-the-regression)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ConnectionScopeServices.java

            FileCollectionFactory fileCollectionFactory,
            GlobalUserInputReceiver userInput,
            UserInputReader userInputReader,
            JvmVersionDetector jvmVersionDetector,
            // This is here to trigger creation of the ShutdownCoordinator. Could do this in a nicer way
            ShutdownCoordinator shutdownCoordinator) {
            ClassLoaderCache classLoaderCache = new ClassLoaderCache();
            return new ProviderConnection(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

                    // It would be better if the file change mutators would read the original test in `beforeScenario`, so we could create the file here
                    // as well in beforeScenario.
                    text = """
                        class ChangingClass {
                            void changingMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NonNormalizedIdentityImmutableTransformExecution.java

            //
            // Note that we are not capturing this value in the actual inputs of the work; doing so would cause unnecessary cache misses.
            // This is why the hash is captured here and not in visitIdentityInputs().
            FileSystemLocationSnapshot inputArtifactSnapshot = fileSystemAccess.read(inputArtifact.getAbsolutePath());
            HashCode inputArtifactSnapshotHash = inputArtifactSnapshot.getHash();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

        /**
         * Allows the given code to access the mutable state of any project in the tree, regardless of which other threads may be accessing the project.
         *
         * DO NOT USE THIS METHOD. It is here to allow some very specific backwards compatibility.
         */
        <T> T allowUncontrolledAccessToAnyProject(Factory<T> factory);
    
        /**
         * Discards all projects for the given build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

                configurationTimeBarrier: ConfigurationTimeBarrier,
                modelParameters: BuildModelParameters,
                /** In non-CC builds, [ConfigurationCacheStartParameter] is not registered; accepting a list here is a way to ignore its absence. */
                configurationCacheStartParameter: List<ConfigurationCacheStartParameter>,
                listenerManager: ListenerManager,
                workExecutionTracker: WorkExecutionTracker,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleContextualExecuter.java

        @Override
        public GradleExecuter reset() {
            if (gradleExecuter != null) {
                gradleExecuter.reset();
            }
            return super.reset();
        }
    
        // The following overrides are here instead of in 'InProcessGradleExecuter' due to the way executors are layered+inherited
        // This should be improved as part of https://github.com/gradle/gradle-private/issues/1009
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:06:31 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         *
         * <p>This shouldn't be on this interface, as this is state for the root build that should be managed internally by the {@link RootBuildState} instance instead. This method is here to allow transition towards that structure.
         */
        void finalizeIncludedBuilds();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top