Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,162 for Fun (0.05 sec)

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

    internal
    fun MethodVisitor.ARETURN() {
        visitInsn(Opcodes.ARETURN)
    }
    
    
    internal
    fun MethodVisitor.RETURN() {
        visitInsn(Opcodes.RETURN)
    }
    
    
    internal
    fun MethodVisitor.ALOAD(`var`: Int) {
        visitVarInsn(Opcodes.ALOAD, `var`)
    }
    
    
    internal
    fun MethodVisitor.ASTORE(`var`: Int) {
        visitVarInsn(Opcodes.ASTORE, `var`)
    }
    
    
    internal
    fun MethodVisitor.GOTO(label: Label) {
    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. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/LoggingEventListener.kt

      }
    
      override fun connectionReleased(
        call: Call,
        connection: Connection,
      ) {
        logWithTime("connectionReleased")
      }
    
      override fun requestHeadersStart(call: Call) {
        logWithTime("requestHeadersStart")
      }
    
      override fun requestHeadersEnd(
        call: Call,
        request: Request,
      ) {
        logWithTime("requestHeadersEnd")
      }
    
      override fun requestBodyStart(call: Call) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

        protected
        fun withDefaultSettings() =
            withDefaultSettingsIn(".")
    
        protected
        fun withDefaultSettingsIn(baseDir: String) =
            withSettingsIn(baseDir, defaultSettingsScript)
    
        protected
        fun withSettings(script: String, produceFile: (String) -> File = ::newFile): File =
            withSettingsIn(".", script, produceFile)
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. okhttp/api/okhttp.api

    	public fun close ()V
    	public final fun delete ()V
    	public final fun directory ()Ljava/io/File;
    	public final fun directoryPath ()Lokio/Path;
    	public final fun evictAll ()V
    	public fun flush ()V
    	public final fun hitCount ()I
    	public final fun initialize ()V
    	public final fun isClosed ()Z
    	public static final fun key (Lokhttp3/HttpUrl;)Ljava/lang/String;
    	public final fun maxSize ()J
    	public final fun networkCount ()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

    import kotlin.coroutines.suspendCoroutine
    
    
    fun <T> singleton(value: T): Codec<T> =
        SingletonCodec(value)
    
    
    fun <T> codec(
        encode: suspend WriteContext.(T) -> Unit,
        decode: suspend ReadContext.() -> T?
    ): Codec<T> = object : Codec<T> {
        override suspend fun WriteContext.encode(value: T) = encode(value)
        override suspend fun ReadContext.decode(): T? = decode()
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. mockwebserver-deprecated/api/mockwebserver.api

    	public final fun requireClientAuth ()V
    	public final fun setBodyLimit (J)V
    	public final fun setDispatcher (Lokhttp3/mockwebserver/Dispatcher;)V
    	public final fun setProtocolNegotiationEnabled (Z)V
    	public final fun setProtocols (Ljava/util/List;)V
    	public final fun setServerSocketFactory (Ljavax/net/ServerSocketFactory;)V
    	public final fun shutdown ()V
    	public final fun start ()V
    	public final fun start (I)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt

        SKIP,
    
        ;
    
        open fun encode(codePoint: Int): String {
          throw UnsupportedOperationException()
        }
      }
    
      enum class Component {
        USER {
          override fun urlString(value: String): String = "http://$******@****.***/"
    
          override fun encodedValue(url: HttpUrl): String = url.encodedUsername
    
          override operator fun set(
            builder: HttpUrl.Builder,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/DependencyHandlerDelegate.kt

        override fun localGroovy(): Dependency =
            delegate.localGroovy()
    
        override fun getConstraints(): DependencyConstraintHandler =
            delegate.constraints
    
        override fun constraints(configureAction: Action<in DependencyConstraintHandler>) =
            delegate.constraints(configureAction)
    
        override fun getComponents(): ComponentMetadataHandler =
            delegate.components
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/functions.kt

    fun a(){}
    private fun b() {}
    
    class A {
        private fun a() {}
    
        class B {
            private fun b() {}
    
            class C {
                private fun c() {}
    
            }
        }
    }
    
    interface D {
        private fun d() {}
        inner class E {
            private fun e() {}
            enum class F {
                private fun f() {}
            }
        }
    }
    
    enum class G {
        H, I;
    
        private fun g() {}
    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 475 bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun call() {
        val call: Call =
          object : Call {
            override fun request(): Request = TODO()
    
            override fun execute(): Response = TODO()
    
            override fun enqueue(responseCallback: Callback) = TODO()
    
            override fun cancel() = TODO()
    
            override fun isExecuted(): Boolean = TODO()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top