Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,162 for Fun (0.27 sec)

  1. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

      }
    
      fun clearHeaders() =
        apply {
          headersBuilder = Headers.Builder()
        }
    
      fun addHeader(header: String) =
        apply {
          headersBuilder.add(header)
        }
    
      fun addHeader(
        name: String,
        value: Any,
      ) = apply {
        headersBuilder.add(name, value.toString())
      }
    
      fun addHeaderLenient(
        name: String,
        value: Any,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/DefaultKotlinScript.kt

            fileOperations.copy(configuration)
    
        override fun copySpec(): CopySpec =
            fileOperations.copySpec()
    
        override fun copySpec(configuration: Action<CopySpec>): CopySpec =
            copySpec().also(configuration::execute)
    
        override fun mkdir(path: Any): File =
            fileOperations.mkdir(path)
    
        override fun delete(vararg paths: Any): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 22:41:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        override fun close() {
            (decoder as? AutoCloseable)?.close()
        }
    
        override suspend fun read(): Any? = getCodec().run {
            decode()
        }
    
        override fun readClass(): Class<*> = classDecoder.run {
            decodeClass()
        }
    
        override val isolate: ReadIsolate
            get() = getIsolate()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/FakeSSLSession.kt

    class FakeSSLSession(vararg val certificates: Certificate) : SSLSession {
      override fun getApplicationBufferSize(): Int {
        throw UnsupportedOperationException()
      }
    
      override fun getCipherSuite(): String {
        throw UnsupportedOperationException()
      }
    
      override fun getCreationTime(): Long {
        throw UnsupportedOperationException()
      }
    
      override fun getId(): ByteArray {
        throw UnsupportedOperationException()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/AnalysisApiServiceRegistrar.kt

        open fun registerApplicationServices(application: MockApplication) {}
    
        open fun registerProjectExtensionPoints(project: MockProject) {}
    
        open fun registerProjectServices(project: MockProject) {}
    
        open fun registerProjectModelServices(project: MockProject, disposable: Disposable) {}
    
        final override fun registerApplicationServices(application: MockApplication, data: Any) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt

      }
    
      override fun setUseClientMode(mode: Boolean) {
        delegate!!.useClientMode = mode
      }
    
      override fun getUseClientMode(): Boolean {
        return delegate!!.useClientMode
      }
    
      override fun setNeedClientAuth(need: Boolean) {
        delegate!!.needClientAuth = need
      }
    
      override fun setWantClientAuth(want: Boolean) {
        delegate!!.wantClientAuth = want
      }
    
      override fun getNeedClientAuth(): Boolean {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/shift_test.go

    	checkOpcodeCounts(t, fun.f, map[Op]int{OpAMD64SHRQconst: 1, OpAMD64CMPQconst: 0, OpAMD64ANDQconst: 0})
    
    	fun = makeConstShiftFunc(c, 66, OpRsh64Ux64, c.config.Types.UInt64)
    	checkOpcodeCounts(t, fun.f, map[Op]int{OpAMD64SHRQconst: 0, OpAMD64CMPQconst: 0, OpAMD64ANDQconst: 0})
    
    	fun = makeConstShiftFunc(c, 18, OpRsh64x64, c.config.Types.Int64)
    	checkOpcodeCounts(t, fun.f, map[Op]int{OpAMD64SARQconst: 1, OpAMD64CMPQconst: 0})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/ScriptApiTest.kt

    import kotlin.reflect.jvm.jvmErasure
    
    
    class ScriptApiTest {
    
        @Test
        fun `IDE build script template implements script api`() =
            assertScriptApiOf<KotlinProjectScriptTemplate>()
    
        @Test
        fun `IDE settings script template implements script api`() =
            assertScriptApiOf<KotlinSettingsScriptTemplate>()
    
        @Test
        fun `IDE init script template implements script api`() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            override fun hashCodeOf(file: File) =
                fileSystemAccess.read(file.absolutePath).hash
    
            override fun hashCodeOfDirectoryChildrenNames(file: File): HashCode = directoryChildrenNamesHash(file)
    
            override fun displayNameOf(file: File): String =
                GFileUtils.relativePathOf(file, rootDirectory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/rewrite6.golden

    //gofmt -r=fun(x)->Fun(x)
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Rewriting of calls must take the ... (ellipsis)
    // attribute for the last argument into account.
    
    package p
    
    func fun(x []int) {}
    
    func g(x []int) {
    	Fun(x)    // -r='fun(x)->Fun(x)' should rewrite this to Fun(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 463 bytes
    - Viewed (0)
Back to top