Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 496 for loadOne (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheController.java

         */
        void configurationAvailable(BuildCacheConfigurationInternal configuration);
    
        /**
         * Resets the state of this controller in preparation for loading configuration from the cache.
         */
        void resetState();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_sync_relevant_dependency.txt

    # Test of go work sync in a workspace in which some dependency in the build
    # list of 'b' (but not otherwise needed by `b`, so not seen when lazy loading
    # occurs) actually is relevant to `a`.
    #
    # a -> p 1.0
    # b -> q 1.1 -> p 1.1
    go work sync
    cmp a/go.mod a/want_go.mod
    cmp b/go.mod b/want_go.mod
    
    -- go.work --
    go 1.18
    
    use (
    	./a
    	./b
    )
    
    -- a/go.mod --
    go 1.18
    
    module example.com/a
    
    require (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/configurationcache/ConfigurationCacheLoadBuildOperationType.java

             * @since 8.6
             */
            long getCacheEntrySize();
    
            /**
             * The ID of the build that store the configuration cache entry.
             *
             * `null` when unknown, e.g. when loading models and not a task graph.
             *
             * @since 8.6
             */
            @Nullable
            String getOriginBuildInvocationId();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 17:02:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/ClassLoadingCache.kt

                is CachedScript.CompilationStage -> assertClassLoads(cachedScript, count)
            }
    
        private
        fun assertClassLoads(stage: CachedScript.CompilationStage, count: Int) =
            result.assertOccurrenceCountOf("loading", stage, count)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource.java

    import org.apache.maven.building.Source;
    
    /**
     * Provides access to the contents of a POM independently of the backing store (e.g. file system, database, memory).
     * <p>
     * This interface does not support loading of parent POM(s) from the same backing store, integrators are strongly
     * encouraged to implement {@link ModelSource2} instead of implementing this interface directly.
     *
     * @see ModelSource2
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildScriptChangesIntegrationTest.groovy

            then:
            outputContains fixture.expectedOutputBeforeChange
            configurationCache.assertStateStored()
    
            when:
            build()
    
            then: 'scripts are not executed when loading from cache'
            outputDoesNotContain fixture.expectedOutputBeforeChange
            configurationCache.assertStateLoaded()
    
            when:
            fixture.applyChange()
            build()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    }
    
                    Object buildAll(String modelName, Project project) {
                        if (modelName == '${CustomProjectsLoadedModel.name}') {
                            return new DefaultCustomModel('loading');
                        }
                        if (modelName == '${CustomBuildFinishedModel.name}') {
                            return new DefaultCustomModel('build');
                        }
                        return null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/RunEclipseSynchronizationTasks.java

     * override the client-provided tasks with the ones stored in the {@code eclipse.synchronizationTasks} property.
     *
     * This allows Buildship to run tasks before the model loading and load the models in a single step.
     *
     * @since 5.4
     */
    public interface RunEclipseSynchronizationTasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFrameworkDistributionModule.java

     *
     * <p>The complexity here is necessary to determine if test framework dependencies are already present on the
     * application classpath, and thus do not need to be loaded from the Gradle distribution. The behavior of loading
     * test framework dependencies from the Gradle distribution is deprecated and will be removed in 9.0</p>
     */
    public class TestFrameworkDistributionModule {
    
        private final String moduleName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/bin/mvnDebug

    #
    #   JAVA_HOME           (Optional) Points to a Java installation.
    #   MAVEN_OPTS          (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC       (Optional) Flag to disable loading of mavenrc files.
    #   MAVEN_DEBUG_ADDRESS (Optional) Set the debug address. Default value is localhost:8000
    # -----------------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jul 25 20:33:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top