Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bear (0.12 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/NullabilityChangesTest.kt

                        @Nullable public String foo(String bar) { return bar; }
                    }
                """,
                v2 = """
                    public class Source {
                        public final String finalField = null;
                        public String foo(String bar) { return bar; }
                    }
                """
            ) {
                assertHasNoError()
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.1K bytes
    - Viewed (0)
  2. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

    plugins {
        id("org.jetbrains.gradle.plugin.idea-ext")
    }
    
    object GradleCopyright {
        const val profileName = "ASL2"
        const val keyword = "Copyright"
        const val notice =
            """Copyright ${"$"}{today.year} the original author or authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Jun 26 15:42:59 GMT 2023
    - 3.6K bytes
    - Viewed (0)
Back to top