Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 965 for halted (0.12 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * Executes the given [action] in a [KaSession] context.
     *
     * The project will be analyzed from the perspective of [useSiteKtElement]'s module, also called the use-site module.
     *
     * @see KaSession
     */
    public inline fun <R> analyze(
        useSiteKtElement: KtElement,
        action: KaSession.() -> R
    ): R =
        KaSessionProvider.getInstance(useSiteKtElement.project)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/race_ppc64le.s

    //    MOVD    runtime·tls_g(SB), R10 // Address of TLS variable
    //    MOVD    0(R10), g              // g = R30
    //    MOVD    g_racectx(g), R3       // racectx == ThreadState
    
    // func runtime·RaceRead(addr uintptr)
    // Called from instrumented Go code
    TEXT	runtime·raceread<ABIInternal>(SB), NOSPLIT, $0-8
    	MOVD	R3, R4 // addr
    	MOVD	LR, R5 // caller of this?
    	// void __tsan_read(ThreadState *thr, void *addr, void *pc);
    	MOVD	$__tsan_read(SB), R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinReadActionConfinementLifetimeToken.kt

            if (!ApplicationManager.getApplication().isReadAccessAllowed) return "Called outside a read action."
    
            if (!permissionChecker.isAnalysisAllowed()) return permissionChecker.getRejectionReason()
    
            val currentToken = lifetimeTracker.currentToken
            if (currentToken == null) return "Called outside an `analyze` context."
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

        /**
         * Disables input tracking for the current thread. Multiple calls to this method "stack", so if
         * this method was called twice then [restoreForCurrentThread] should also be called twice to
         * enable input tracking back.
         */
        fun disableForCurrentThread() {
            ++inputTrackingDisabledCounterForThread
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/runtime/cgocall.go

    //
    // Must be nosplit because it is called by needm prior to fully initializing
    // the M.
    //
    //go:nosplit
    func callbackUpdateSystemStack(mp *m, sp uintptr, signal bool) {
    	g0 := mp.g0
    
    	inBound := sp > g0.stack.lo && sp <= g0.stack.hi
    	if mp.ncgo > 0 && !inBound {
    		// ncgo > 0 indicates that this M was in Go further up the stack
    		// (it called C and is now receiving a callback).
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                // This is because we cannot tell the difference between:
                // - a validation exception thrown in user code that is called from other user code, where the caller should be blamed
                // - an unexpected exception thrown in user code that is called from other user code, where the called code should be blamed
                // So, for now, just blame the first user code that can be identified. This gives the user some clues for where to start
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

        @Override
        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
            if (called) {
                throw new IllegalStateException("Cannot reuse a compilation task");
            }
            called = true;
            try {
                setupProcessors();
                return delegate.call();
            } finally {
                cleanupProcessors();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/testing/testing.go

    		c.helperPCs[pc[0]] = struct{}{}
    		c.helperNames = nil // map will be recreated next time it is needed
    	}
    }
    
    // Cleanup registers a function to be called when the test (or subtest) and all its
    // subtests complete. Cleanup functions will be called in last added,
    // first called order.
    func (c *common) Cleanup(f func()) {
    	c.checkFuzzFn("Cleanup")
    	var pc [maxStackLen]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/visibilityChecker/AbstractVisibilityCheckerTest.kt

    /**
     * To find the element for the use-site position, the visibility checker test looks for an element called "useSite" in the main module if
     * the main file doesn't or cannot contain a caret marker, e.g. in files from binary libraries. The target name is case-insensitive, so
     * classes called `UseSite` will be found as well.
     */
    private const val USE_SITE_ELEMENT_NAME = "usesite"
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 16:12:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

             */
            OTHER,
        }
    
        boolean isDirectory();
    
        String getName();
    
        /**
         * This method or {@link #withInputStream(IoFunction)} ()} may or may not support being called more than
         * once per entry.  Use {@link #canReopen()} to determine if more than one call is supported.
         */
        byte[] getContent() throws IOException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top