Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for Unlock1 (0.31 sec)

  1. cmd/object-api-multipart_test.go

    	z.serverPools[0].erasureDisksMu.Lock()
    	er.getDisks = func() []StorageAPI {
    		erasureDisks[ridx] = newNaughtyDisk(erasureDisks[ridx], nil, errFaultyDisk)
    		return erasureDisks
    	}
    	z.serverPools[0].erasureDisksMu.Unlock()
    
    	uploadIDs = append(uploadIDs, res.UploadID)
    
    	// Create multipart parts.
    	// Need parts to be uploaded before MultipartLists can be called and tested.
    	createPartCases := []struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	if iscgo && gp.m != nil && gp.m.ncgo > 0 && gp.syscallsp != 0 && gp.m.cgoCallers != nil && gp.m.cgoCallers[0] != 0 {
    		// Lock cgoCallers so that a signal handler won't
    		// change it, copy the array, reset it, unlock it.
    		// We are locked to the thread and are not running
    		// concurrently with a signal handler.
    		// We just have to stop a signal handler from interrupting
    		// in the middle of our copy.
    		gp.m.cgoCallersUse.Store(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

                assert !finalizedPlan.allExecutionComplete()
                def nextNode = selection.item
                if (nextNode instanceof LocalTaskNode && nextNode.task instanceof Async) {
                    nextNode.projectToLock.unlock()
                }
                result = nextNode
            }
            return result
        }
    
        void assertNoTaskReadyToStart() {
            coordinator.withStateLock {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    				// the final LoadPackages call.
    				return true
    			}
    		}
    
    		mu.Lock()
    		upgrades = append(upgrades, pathSet{path: path, pkgMods: pkgMods, err: err})
    		mu.Unlock()
    		return false
    	}
    
    	r.loadPackages(ctx, patterns, findPackage)
    
    	// Since we built up the candidate lists concurrently, they may be in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			return statusError(logger, fmt.Errorf("internal error, unexpected allocation mode %v", claim.Spec.AllocationMode))
    		}
    	}
    
    	if len(unavailableClaims) > 0 {
    		state.mutex.Lock()
    		defer state.mutex.Unlock()
    		if state.unavailableClaims == nil {
    			state.unavailableClaims = sets.New[int]()
    		}
    
    		for _, index := range unavailableClaims {
    			claim := state.claims[index]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    // still be intelligible.
    var stdoutMu sync.Mutex
    
    type lockedStdout struct{}
    
    func (lockedStdout) Write(b []byte) (int, error) {
    	stdoutMu.Lock()
    	defer stdoutMu.Unlock()
    	return os.Stdout.Write(b)
    }
    
    func (r *runTestActor) Act(b *work.Builder, ctx context.Context, a *work.Action) error {
    	sh := b.Shell(a)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polygon points="14.4,3.1 11.3,5.1 15,7.3 15,12.9 10,15.7 5,12.9 5,8.5 2,6.8 2,14.8 9.9,19.5 18,14.8 18,5.3"/><polygon points="9.8,4.2 6.7,2.4 9.8,0.4 12.9,2.3"/></svg>',unlock:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect fill="none" stroke="#000" x="3.5" y="8.5" width="13" height="10"/><path fill="none" stroke="#000" d="M6.5,8.5 L6.5,4.9 C6.5,3 8.1,1.5 10,1.5 C11.9,1.5 13.5,3...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
Back to top