Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unused_parameter (1.52 sec)

  1. 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)
  2. 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