Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for absClock (0.08 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/UsingLockingOnNonProjectConfigurationsIntegrationTest.groovy

            }
        }
        dependencyLocking {
            lockFile = file("\$projectDir/gradle/bslock.file")
        }
        configurations.classpath {
            resolutionStrategy.activateDependencyLocking()
        }
        dependencies {
            classpath 'org.foo:foo-plugin:[1.0,2.0)'
        }
    }
    """
            def lockFile = testDirectory.file('gradle', 'bslock.file')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    // cbs stores all registered Go callbacks.
    var cbs struct {
    	lock  mutex // use cbsLock / cbsUnlock for race instrumentation.
    	ctxt  [cb_max]winCallback
    	index map[winCallbackKey]int
    	n     int
    }
    
    func cbsLock() {
    	lock(&cbs.lock)
    	// compileCallback is used by goenvs prior to completion of schedinit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/wasmobj.go

    	tablePC := int64(0)
    	base := ctxt.PosTable.Pos(s.Func().Text.Pos).Base()
    	for p := s.Func().Text; p != nil; p = p.Link {
    		prevBase := base
    		base = ctxt.PosTable.Pos(p.Pos).Base()
    		switch p.As {
    		case ABlock, ALoop, AIf:
    			explicitBlockDepth++
    
    		case AEnd:
    			if explicitBlockDepth == 0 {
    				panic("End without block")
    			}
    			explicitBlockDepth--
    
    		case ARESUMEPOINT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top