Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for UNMARKED (0.04 seconds)

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

                    errors << "From non-null returning to null-unmarked returning breaking change"
                } else if (oldNullability == Nullability.UNMARKED && newNullability == Nullability.NULLABLE) {
                    errors << "From null-unmarked returning to null returning breaking change"
                } else if (oldNullability == Nullability.UNMARKED && newNullability == Nullability.NON_NULL) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

                }
                if (snippet.test || snippet.language == 'console') {
                    test(snippet)
                    previousTest = snippet
                    return
                }
                // Must be an unmarked snippet....
            }
    
            private void test(Snippet test) {
                setupCurrent(test)
    
                if (test.continued) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
Back to Top