- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 12 for addEventListener (0.09 seconds)
-
docs/en/docs/js/custom.js
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Mon Sep 22 15:11:52 GMT 2025 - 6.3K bytes - Click Count (2) -
misc/chrome/gophertool/popup.js
var url = links[i].getAttribute("url"); if (url) links[i].addEventListener("click", function () { openURL(this.getAttribute("url")); }); } } window.addEventListener("load", function () { addLinks(); console.log("hacking gopher pop-up loaded."); document.getElementById("inputbox").focus(); }); window.addEventListener("submit", function () { console.log("submitting form");
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Sun Oct 21 17:05:21 GMT 2012 - 1020 bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/EventListenerRelay.kt
var eventCount = 0 private fun onEvent(callEvent: CallEvent) { if (eventCount++ == 0) { eventRecorder.logEvent(callEvent) val next = EventListenerRelay(call, eventRecorder) call.addEventListener(next.eventListener) } }
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 1.5K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/FailingCall.kt
override fun isExecuted(): Boolean = error("unexpected") override fun isCanceled(): Boolean = error("unexpected") override fun timeout(): Timeout = error("unexpected") override fun addEventListener(eventListener: EventListener) = error("unexpected") override fun <T : Any> tag(type: KClass<T>): T? = error("unexpected") override fun <T> tag(type: Class<out T>): T? = error("unexpected")
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 1.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt
* that they are not interested in. * * @see EventListener for semantics and restrictions on listener implementations. */ fun addEventListener(eventListener: EventListener) /** * Returns the tag attached with [type] as a key, or null if no tag is attached with that key. *
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 6.8K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy
*/ private static String buildAutoSelectSeverityFilter() { // language=javascript return """ <script type="text/javascript"> document.addEventListener("DOMContentLoaded", function(event) { \$(document).ready(function () { const level = \$("#filter-preset")[0].value;Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Feb 07 20:38:43 GMT 2023 - 7.2K bytes - Click Count (0) -
fastapi/openapi/docs.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 10.1K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt
private fun Call.addEventRecorder(eventRecorder: EventRecorder) { when (listenerInstalledOn) { ListenerInstalledOn.Call -> { addEventListener(eventRecorder.eventListener) } ListenerInstalledOn.Relay -> { addEventListener(EventListenerRelay(this, eventRecorder).eventListener) } ListenerInstalledOn.Client -> {} // listener is added elsewhere. } }
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 70.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt
internal val plansToCancel = CopyOnWriteArrayList<RoutePlanner.Plan>() private val tags = AtomicReference(originalRequest.tags) override fun timeout(): Timeout = timeout override fun addEventListener(eventListener: EventListener) { // Atomically replace the current eventListener with a composite one. do { val previous = this.eventListener
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 19.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
override fun isExecuted(): Boolean = TODO() override fun isCanceled(): Boolean = TODO() override fun timeout(): Timeout = TODO() override fun addEventListener(eventListener: EventListener) = TODO() override fun <T : Any> tag(type: KClass<T>): T? = TODO() override fun <T> tag(type: Class<out T>): T? = TODO() override fun <T : Any> tag(Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 47K bytes - Click Count (0)