Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 151 for regUsed (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleProjectIntegrationTest.groovy

                modelsReused(":b")
            }
    
            and:
            checkGradleProject(updatedModel, originalUpdatedModel)
        }
    
        def "root GradleProject model is reused when models are not dependencies even when child configuration changes"() {
            settingsFile << """
                rootProject.name = 'root'
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

        }
    
        @Override
        public void submit(ConditionalExecution<T> execution) {
            if (queueState == QueueState.Stopped) {
                throw new IllegalStateException("DefaultConditionalExecutionQueue cannot be reused once it has been stopped.");
            }
    
            lock.lock();
            try {
                // expand the thread pool until we hit max workers
                if (workerCount < getMaxWorkerCount()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

            and:
            fixture.assertStateLoaded()
            outputDoesNotContain("configuring build")
            outputDoesNotContain("creating model")
        }
    
        def "can store fingerprint for reused projects"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. internal/grid/handlers.go

    // Handlers can use this to create a reusable response.
    // The response may be reused, so caller should clear any fields.
    func (h *SingleHandler[Req, Resp]) NewResponse() Resp {
    	return h.newResp()
    }
    
    // NewRequest creates a new request.
    // Handlers can use this to create a reusable request.
    // The request may be reused, so caller should clear any fields.
    func (h *SingleHandler[Req, Resp]) NewRequest() Req {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            ClassLoader classLoader = cache.getClassLoader(details, detailsToClassLoader);
            // A single classloader is used in the daemon for a given set of client owned classloaders
            // When this classloader is reused for multiple requests, the classpath of subsequent requests may be different.
            // So, update the classpath of this shared classloader
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            run 'help'
    
            then:
            def scripts = scriptDetails()
            scriptsAreReused(before, scripts) // The scripts end up with the same byte code and so the result is reused
            getCompileBuildFileOperationsCount() == 1 // single classpath block
        }
    
        @ToBeFixedForConfigurationCache(because = "changing buildscript files dependency")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            configurationCacheRun(task, *options)
            def secondRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Reusing configuration cache.\n/, '')
                .replaceAll(/Configuration cache entry reused.\n/, '')
    
            then:
            firstRunOutput == secondRunOutput
    
            where:
            task           | options
            "help"         | []
            "properties"   | []
            "dependencies" | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/os/file_unix.go

    // methods to stop working.
    // Because file descriptors can be reused, the returned file descriptor may
    // only be closed through the [File.Close] method of f, or by its finalizer during
    // garbage collection. Otherwise, during garbage collection the finalizer
    // may close an unrelated file descriptor with the same (reused) number.
    //
    // As an alternative, see the f.SyscallConn method.
    func (f *File) Fd() uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

        public ClassPath resolveClassPath(Configuration classpathConfiguration, ScriptClassPathResolutionContext resolutionContext) {
            // We clear resolution scope from service after the resolution is done, so data is not reused between invocations.
            long contextId = resolutionContext.getContextId();
            CacheInstrumentationDataBuildService buildService = resolutionContext.getBuildService().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

                fun disabledConfigurationCacheBuildModelParameters(buildOptionReason: String): BuildModelParameters {
                    logger.log(configurationCacheLogLevel, "{} as configuration cache cannot be reused due to --{}", requirements.actionDisplayName.capitalizedDisplayName, buildOptionReason)
                    return BuildModelParameters(
                        parallelProjectExecution,
                        configureOnDemand,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top