Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 250 for regUsed (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.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
            "dependencyReport"      | []
            "taskReport"            | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            then:
            configurationCache.assertStateLoaded()
    
            and: 'classloader1 is reused'
            outputContains 'probe(classloader1) => 4'
            outputContains 'probe(classloader1) => 5'
            outputContains 'probe(classloader1) => 6'
    
            and: 'classloader2 is reused'
            outputContains 'probe(classloader2) => 4'
            outputContains 'probe(classloader2) => 5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. src/net/resolverdialfunc_test.go

    	if err != nil {
    		panic(err) // internal fault, not user
    	}
    	return nil
    }
    
    var (
    	ErrNotExist = errors.New("name does not exist") // maps to RCode3, NXDOMAIN
    	ErrRefused  = errors.New("refused")             // maps to RCode5, REFUSED
    )
    
    type resolverFuncConn struct {
    	h       *resolverDialHandler
    	network string
    	address string
    	builder *dnsmessage.Builder
    	q       dnsmessage.Question
    	ttl     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/jvm/JavaCompilationSoakTest.groovy

            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter="+it)
            }
        }
    
        def "can recompile many times in a row with a reused compiler daemon"() {
            expect:
            10.times {
                println("Run $it")
                succeeds("clean", "assemble", "-Pcounter=0")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                        private final String projectName = getProject().getName();
    
                        @TaskAction
                        void printValue() {
                            // When ClassLoaders are reused
                            // the 1st run should print `<project name>.value = 1`
                            // the 2nd run should print `<project name>.value = 2`
                            // and so on.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

         */
        boolean hasMutableState();
    
        /**
         * Creates a new container for a value that is calculated from the mutable state of this container, and then reused by multiple threads.
         */
        <S> CalculatedModelValue<S> newCalculatedValue(@Nullable S initialValue);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. internal/event/target/nsq.go

    		if err != nil {
    			return false, err
    		}
    		target.producer = producer
    	}
    
    	if err := target.producer.Ping(); err != nil {
    		// To treat "connection refused" errors as errNotConnected.
    		if xnet.IsConnRefusedErr(err) {
    			return false, store.ErrNotConnected
    		}
    		return false, err
    	}
    	return true, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                problemsWithStackTraceCount = 0
            }
            outputContains("Configuration cache entry reused with 4 problems.")
        }
    
        def "configuration time problems are reported and fail the build by default only when configuration is executed invalidating the cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). Because the actual
    // m can be reused, it's possible for that m to have never
    // had its P (in _Psyscall) stolen if the runtime doesn't
    // model the scenario correctly. Make sure we reject such
    // traces.
    
    package main
    
    import (
    	"internal/trace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

    import javax.annotation.concurrent.ThreadSafe;
    import java.util.List;
    
    /**
     * A specialized {@link ComponentGraphResolveState} for local components (ie project dependencies).
     *
     * <p>Instances of this type are cached and reused for multiple graph resolutions, possibly in parallel. This means that the implementation must be thread-safe.
     */
    @ThreadSafe
    public interface LocalComponentGraphResolveState extends ComponentGraphResolveState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top