Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nullabilityOf (0.06 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                def oldNullability = nullabilityOf(oldMethod)
                def newNullability = nullabilityOf(newMethod)
    
                if (oldNullability == Nullability.NON_NULL && newNullability == Nullability.NULLABLE) {
                    errors << "From non-null returning to null returning breaking change"
                } else if (oldNullability == Nullability.NON_NULL && newNullability == Nullability.UNMARKED) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Oct 27 09:26:32 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  2. architecture/standards/0008-use-nullaway.md

    Only enable checks for a project if all its dependencies have checks enabled, in order to avoid back-and-forth when refining the annotations.
    
    Avoid writing the so-called `PolyNull` or `ParametricNull` methods (where nullability of the result depends on the nullability of the type argument).
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 11 10:24:40 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/JSpecifyNullUnmarkedChangesTest.kt

            ) {
                assertHasNoError()
                assertHasWarnings(
                    "Method com.example.Source.foo(java.lang.String): Return nullability changed from null-unmarked to non-nullable",
                    "Method com.example.Source.baz(java.lang.String): Return nullability changed from null-unmarked to non-nullable",
                )
                assertHasNoInformation()
            }
        }
    
        @Test
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Oct 27 09:26:32 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. .gitignore

    /*/internal-android-performance-testing/build-android-libs
    test-splits/
    /gradle/verification-keyring.gpg
    
    # Kotlin
    # ------
    .kotlin
    
    # IDEA
    # ----
    !/.idea
    /.idea/*
    # Needed to track entry points and nullability annotations (see https://youtrack.jetbrains.com/issue/IDEA-354114 and https://youtrack.jetbrains.com/issue/IDEA-354115)
    !/.idea/misc.xml
    !/.idea/codeStyles
    !/.idea/inspectionProfiles
    !/.idea/icon.png
    !/.idea/icon_dark.png
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Nov 11 20:35:18 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                -->
                <property name="illegalPkgs" value="jdk.internal,com.beust,org.testng.collections"/>
                <!--
                    We prefer org.jspecify for nullability annotations.
                -->
                <property name="illegalClasses" value="org.jetbrains.annotations.Nullable,org.jetbrains.annotations.NotNull"/>
            </module>
    
            <!-- Naming -->
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 11 10:24:25 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    testing/architecture-test/src/changes/accepted-changes/accepted-public-api-changes.json
    testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt
    
    # Core automation platform (core/configuration)
    platforms/core-configuration/               @gradle/bt-cortex
    testing/smoke-ide-test/                     @gradle/bt-cortex
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 07 21:47:29 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top