Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 250 for regUsed (0.3 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

            1 * client.execute(spec) >> new DefaultWorkResult(true, null)
    
            then:
            1 * clientsManager.release(client)
        }
    
        def "idle client is reused when daemon is executed"() {
            when:
            factory.getWorker(requirement).execute(spec)
    
            then:
            1 * clientsManager.reserveIdleClient(options) >> client
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyClassPathNotationConverterTest.groovy

        }
    
        def "reuses dependency instances"() {
            when:
            def out = parse(GRADLE_API)
    
            then:
            out instanceof DefaultFileCollectionDependency
    
            when: // same instance is reused
            def out2 = parse(GRADLE_API)
    
            then:
            out2.is out
        }
    
        def "assigns component identifier to dependency"() {
            expect:
            def dep = parse(notation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    cacheAction == LOAD && !hasProblems -> log("Configuration cache entry reused.")
                    cacheAction == LOAD -> log("Configuration cache entry reused with {}.", problemCountString)
                    hasTooManyProblems -> log("Too many configuration cache problems found ({}).", problemCountString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. test/codegen/stack.go

    // type, but not pointer-identical types. See issue 65783.
    
    func spillSlotReuse() {
    	// The return values of getp1 and getp2 need to be
    	// spilled around the calls to nopInt. Make sure that
    	// spill slot gets reused.
    
    	//arm64:`.*autotmp_2-8\(SP\)`
    	getp1()[nopInt()] = 0
    	//arm64:`.*autotmp_2-8\(SP\)`
    	getp2()[nopInt()] = 0
    }
    
    //go:noinline
    func nopInt() int {
    	return 0
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

                case Kind.ADD_RESOURCE:
                    writeResource "42"
                    break
            }
        }
    
        String getExpectedCacheInvalidationMessage() {
            "configuration cache cannot be reused because an input to task ':${projectDir.name}:$invalidatedTaskName' has changed."
        }
    
        String getInvalidatedTaskName() {
            switch (kind) {
                case Kind.CHANGE_RESOURCE:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    However, it is likely that many of those tasks will have been run with exactly the same inputs in a prior CI build, populating the build cache; the outputs from those prior runs can safely be reused, resulting in dramatic build performance improvements.
    
    === Reusing CI builds for local development
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

         * http://cwiki.apache.org/confluence/display/MAVEN/ConnectException
         * </p>
         */
        @Test
        void testJdk7ipv6() {
            ConnectException connEx = new ConnectException("Connection refused: connect");
            IOException ioEx = new IOException("Unable to establish loopback connection", connEx);
            MojoExecutionException mojoEx =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // did). It turns out this is actually fine if all the threads
    // in the trace have unique IDs, since the P just stays associated
    // with an eternally dead thread, and it's stolen by some other
    // thread later. But if thread IDs are reused, then the tracer
    // gets confused when trying to advance events on the new thread.
    // The now-dead thread which exited on a GoDestroySyscall still has
    // its P associated and this transfers to the newly-live thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

            synchronized(lock) {
                if (scopeSpecs.containsKey(childId)) {
                    // scope is being reused
                    return
                }
    
                val parentIsRoot = parentId.parent == null
                val parent = if (parentIsRoot) {
                    null
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStepTest.groovy

            result.afterExecutionOutputState.get().originMetadata.buildCacheKey == buildCacheKey
            result.afterExecutionOutputState.get().originMetadata.executionTime >= result.duration
            !result.afterExecutionOutputState.get().reused
            assertOperation()
    
            1 * delegate.execute(work, _) >> delegateResult
    
            then:
            1 * outputSnapshotter.snapshotOutputs(work, _) >> outputSnapshots
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top