Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unused_parameter (0.45 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisFilterTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @file:Suppress("UNUSED_PARAMETER")
    
    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.Restricted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt

        }
    
        private fun SmartPrinter.generate(packageName: String, convertersMap: Map<KClass<*>, HLParameterConversion>) {
            printCopyright()
            println("@file:Suppress(\"UNUSED_PARAMETER\")")
            println()
            println("package $packageName")
            println()
            collectAndPrintImports(convertersMap)
            println()
            printGeneratedMessage()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. 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)
  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)
Back to top