Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nothing_to_inline (0.07 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/SourceFileHeader.kt

    val fileHeader: String
        get() = fileHeaderFor(KOTLIN_DSL_PACKAGE_NAME)
    
    
    fun fileHeaderFor(packageName: String, isIncubating: Boolean = false) =
        """$LICENSE_HEADER
    
    @file:Suppress(
        "unused",
        "nothing_to_inline",
        "useless_cast",
        "unchecked_cast",
        "extension_shadowed_by_member",
        "redundant_projection",
        "RemoveRedundantBackticks",
        "ObjectPropertyName",
        "deprecation",
        "detekt:all"
    )
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Aug 08 10:56:09 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/Lockable.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    @file:Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "NOTHING_TO_INLINE")
    
    package okhttp3.internal.concurrent
    
    import kotlin.contracts.ExperimentalContracts
    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    import okhttp3.internal.assertionsEnabled
    
    /**
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top