Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 170 for regUsed (0.35 sec)

  1. src/sync/waitgroup.go

    // at any time.
    // Typically this means the calls to Add should execute before the statement
    // creating the goroutine or other event to be waited for.
    // If a WaitGroup is reused to wait for several independent sets of events,
    // new Add calls must happen after all previous Wait calls have returned.
    // See the WaitGroup example.
    func (wg *WaitGroup) Add(delta int) {
    	if race.Enabled {
    		if delta < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseClassLoadingIntegrationSpec.groovy

    import org.gradle.test.fixtures.file.LeaksFileHandles
    import spock.lang.Issue
    
    @LeaksFileHandles
    class PluginUseClassLoadingIntegrationSpec extends AbstractPluginSpec {
    
        def "plugin classes are reused if possible"() {
            given:
            publishPlugin()
            settingsFile << """
                include "p1"
                include "p2"
            """
    
            when:
            file("p1/build.gradle") << USE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/net/util.go

    func IsHTTP2ConnectionLost(err error) bool {
    	return err != nil && strings.Contains(err.Error(), "http2: client connection lost")
    }
    
    // Returns if the given err is "connection refused" error
    func IsConnectionRefused(err error) bool {
    	var errno syscall.Errno
    	if errors.As(err, &errno) {
    		return errno == syscall.ECONNREFUSED
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentGraphResolveState.java

    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * A specialized {@link ComponentGraphResolveState} for external components.
     *
     * <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 ModuleComponentGraphResolveState extends ExternalComponentGraphResolveState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonStartupMessage.java

        public static final String SUBSEQUENT_BUILDS_WILL_BE_FASTER = "(subsequent builds will be faster)";
        public static final String NOT_REUSED_MESSAGE = " could not be reused, use --status for details";
    
        public static String generate(final int numBusy, final int numIncompatible, final int numStopped) {
            final int totalUnavailableDaemons = numBusy + numIncompatible + numStopped;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskExecuterResult.java

        /**
         * Whether the task was executed incrementally.
         */
        boolean executedIncrementally();
    
        /**
         * If the execution resulted in some previous output being reused, this returns its origin metadata.
         */
        Optional<OriginMetadata> getReusedOutputOriginMetadata();
    
        /**
         * The caching state of the task, including all its captured inputs and the cache key if calculated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 16:45:45 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NbtException.java

                }
                break;
            case ERR_SSN_SRVC:
                result += "ERR_SSN_SRVC/";
                switch ( errorCode ) {
                case CONNECTION_REFUSED:
                    result += "Connection refused";
                    break;
                case NOT_LISTENING_CALLED:
                    result += "Not listening on called name";
                    break;
                case NOT_LISTENING_CALLING:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. docs/contribute/concurrency.md

    Since HTTP requests frequently happen in parallel, connection pooling must be thread-safe.
    
    These are the primary classes involved with establishing, sharing, and terminating connections:
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top