Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for Acquirem (0.1 sec)

  1. src/cmd/go/internal/modload/init.go

    			if err == nil {
    				err = modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements())
    			}
    		}
    	}()
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := modfetch.SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    // This should be called before starting the push, from the thread creating
    // the push context.
    func (ps *PushContext) InitContext(env *Environment, oldPushContext *PushContext, pushReq *PushRequest) error {
    	// Acquire a lock to ensure we don't concurrently initialize the same PushContext.
    	// If this does happen, one thread will block then exit early from InitDone=true
    	ps.initializeMutex.Lock()
    	defer ps.initializeMutex.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    )
    
    // netTestSem is a semaphore limiting the number of tests that may use the
    // external network in parallel. If non-nil, it contains one buffer slot per
    // test (send to acquire), with a low enough limit that the overall number of
    // connections (summed across subprocesses) stays at or below base.NetLimit.
    var netTestSem chan struct{}
    
    var exeSuffix string = func() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    			tooOld := !oldTime.IsZero() && pconn.idleAt.Round(0).Before(oldTime)
    			if tooOld {
    				// Async cleanup. Launch in its own goroutine (as if a
    				// time.AfterFunc called it); it acquires idleMu, which we're
    				// holding, and does a synchronous net.Conn.Close.
    				go pconn.closeConnIfStillIdle()
    			}
    			if pconn.isBroken() || tooOld {
    				// If either persistConn.readLoop has marked the connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top