Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LT (1.83 sec)

  1. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains="" />
          </replaceConfiguration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    ```
    
    HTML tags for other block-level elements, such as `<ul>` or `<table>`, are not preceded with `<p>`.
    
    ### 1.1.4 Symbols
    
    Entities for the less than symbol (<) and the greater than symbol (>) should be written as `&lt`; and `&gt;`. 
    Similarly, the ampersand (&) should be written as `&amp;`:
    
    ```java
    /**
     * This &amp; that.
     */
    ```
    
    ### 1.1.5 Links
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

                    versions[version!!] = date
                }
            }
            return versions
        }
    
    
        private
        fun String.escape() = replace("<", "&lt;").replace(">", "&gt;")
    }
    
    
    private
    typealias Version = String
    
    
    private
    typealias IncubatingDescription = String
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top