Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for tryLock (0.14 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

    }
    
    
    internal
    inline fun <reified T> MethodVisitor.TRY_CATCH(
        noinline tryBlock: MethodVisitor.() -> Unit,
        noinline catchBlock: MethodVisitor.() -> Unit
    ) =
        TRY_CATCH(T::class.internalName, tryBlock, catchBlock)
    
    
    internal
    fun MethodVisitor.TRY_CATCH(
        exceptionType: InternalName,
        tryBlock: MethodVisitor.() -> Unit,
        catchBlock: MethodVisitor.() -> Unit
    ) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/atomic_mipsx.s

    TEXT ·Oruintptr(SB), NOSPLIT, $0-12
    	JMP	·Or32(SB)
    
    TEXT ·spinLock(SB),NOSPLIT,$0-4
    	MOVW	state+0(FP), R1
    	MOVW	$1, R2
    	SYNC
    try_lock:
    	MOVW	R2, R3
    check_again:
    	LL	(R1), R4
    	BNE	R4, check_again
    	SC	R3, (R1)
    	BEQ	R3, try_lock
    	SYNC
    	RET
    
    TEXT ·spinUnlock(SB),NOSPLIT,$0-4
    	MOVW	state+0(FP), R1
    	SYNC
    	MOVW	R0, (R1)
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*Mutex).Lock", Method, 0},
    		{"(*Mutex).TryLock", Method, 18},
    		{"(*Mutex).Unlock", Method, 0},
    		{"(*Once).Do", Method, 0},
    		{"(*Pool).Get", Method, 3},
    		{"(*Pool).Put", Method, 3},
    		{"(*RWMutex).Lock", Method, 0},
    		{"(*RWMutex).RLock", Method, 0},
    		{"(*RWMutex).RLocker", Method, 0},
    		{"(*RWMutex).RUnlock", Method, 0},
    		{"(*RWMutex).TryLock", Method, 18},
    		{"(*RWMutex).TryRLock", Method, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Body and catch blocks of try-catch expressions are used if the try-catch itself
                // is used.
                is KtTryExpression ->
                    (parent.tryBlock == child || child in parent.catchClauses) && isUsed(parent)
    
                // If expressions always use their condition, and the branches are used if the
                // If itself is used as an expression.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            val tryExpression = expression.unwrapQualified<KtTryExpression> { tryExpression, currentExpression ->
                currentExpression == tryExpression.tryBlock
            } ?: return null
            return getExpectedType(tryExpression)
        }
    
        private fun getExpectedTypeOfElvisOperand(expression: PsiElement): KaType? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

            }
        }
    
        private
        fun MethodVisitor.compiledScriptClassInstantiation(compiledScriptClass: InternalName, instantiation: MethodVisitor.() -> Unit) {
    
            TRY_CATCH<Throwable>(
                tryBlock = {
    
                    instantiation()
                },
                catchBlock = {
    
                    emitOnScriptException(compiledScriptClass)
                }
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. test-site/activator-launch-1.3.2.jar

    incrementLock(java.io.File); } org/apache/ivy/plugins/lock/FileBasedLockStrateg$FileLocker.class package org.apache.ivy.plugins.lock; public final synchronized class FileBasedLockStrateg$FileLocker { private boolean debugLocking; public final boolean tryLock(java.io.File); public void FileBasedLockStrateg$FileLocker(boolean); } org/apache/ivy/plugins/lock/DeleteOnExitHook.class package org.apache.ivy.plugins.lock; final synchronized class DeleteOnExitHook { private static java.util.LinkedHashSet files;...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top