Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for unused_parameter (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/BuildServices.kt

            cachedClasspathTransformer: CachedClasspathTransformer,
            listenerManager: ListenerManager,
            executionEngine: ExecutionEngine,
            workspaceProvider: KotlinDslWorkspaceProvider,
            @Suppress("UNUSED_PARAMETER") kotlinCompilerContextDisposer: KotlinCompilerContextDisposer,
            fileCollectionFactory: FileCollectionFactory,
            inputFingerprinter: InputFingerprinter,
            internalOptions: InternalOptions,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensionsTest.kt

        on { get() } doReturn task
        on { configure(any()) } doAnswer {
            it.getArgument<Action<T>>(0).execute(task)
        }
    }
    
    
    internal
    inline fun <reified T> assertInferredTypeOf(@Suppress("unused_parameter") value: T, expectedType: TypeOf<T>) {
        assertThat(typeOf<T>(), equalTo(expectedType))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/v1/PrecompiledScriptTemplates.kt

        /**
         * Configures the build script classpath for this project.
         *
         * @see [Project.buildscript]
         */
        @Suppress("unused")
        open fun buildscript(@Suppress("unused_parameter") block: ScriptHandlerScope.() -> Unit) {
            throw IllegalStateException("The `buildscript` block is not supported on Kotlin script plugins, please use the `plugins` block or project level dependencies.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

        fun functionSignatureString(function: SchemaFunction) =
            "${function.simpleName}(${function.parameters.joinToString { typeString(it.type) }}): ${typeString(function.returnValueType)}"
    
        @Suppress("unused", "UNUSED_PARAMETER")
        private
        class TopLevelReceiver {
            @Adding
            fun addAndConfigure(name: String, configure: TopLevelElement.() -> Unit) = TopLevelElement().also {
                it.name = name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirArgumentsConverter.kt

    /*
     * Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    @file:Suppress("UNUSED_PARAMETER")
    
    package org.jetbrains.kotlin.analysis.api.fir.diagnostics
    
    import org.jetbrains.kotlin.KtPsiSourceElement
    import org.jetbrains.kotlin.KtSourceElement
    import org.jetbrains.kotlin.analysis.api.fir.KaFirSession
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

            }
        }
    
        class SerializableReadObjectOnlyBean(var value: Any? = null) : Serializable {
    
            @Transient
            var transientValue: Any? = null
    
            @Suppress("UNUSED_PARAMETER")
            private
            fun readObject(objectInputStream: ObjectInputStream) {
                transientValue = "42"
                objectInputStream.defaultReadObject()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

        level = DeprecationLevel.ERROR
    )
    fun Project.plugins(@Suppress("unused_parameter") block: PluginDependenciesSpec.() -> Unit): Nothing =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt

              authType: String?,
            ) {
              withoutHostCalled = true
            }
    
            // called by Android via reflection in X509TrustManagerExtensions
            @Suppress("unused", "UNUSED_PARAMETER")
            fun checkServerTrusted(
              chain: Array<out X509Certificate>,
              authType: String,
              hostname: String,
            ): List<X509Certificate> {
              withHostCalled = true
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top