Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for Tr (0.14 sec)

  1. src/main/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

                                            <tr>
                                                <th><la:message key="labels.user_homePhone"/></th>
                                                <td>${f:h(attributes.homePhone)}<la:hidden
                                                        property="attributes.homePhone"/></td>
                                            </tr>
                                            <tr>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 17.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_details.jsp

                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.sortOrder"/></th>
                                            <td>${f:h(sortOrder)}<la:hidden property="sortOrder"/></td>
                                        </tr>
                                        <tr>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Feb 28 06:09:47 GMT 2021
    - 5.5K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler.jsp

                                                </tr>
                                                </thead>
                                                <tbody>
                                                <c:forEach var="data" varStatus="s"
                                                           items="${scheduledJobItems}">
                                                    <tr
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 6.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/xml/XmlEscapers.java

     *
     * <p>For details on the behavior of the escapers in this class, see sections <a
     * href="http://www.w3.org/TR/2008/REC-xml-20081126/#charsets">2.2</a> and <a
     * href="http://www.w3.org/TR/2008/REC-xml-20081126/#syntax">2.4</a> of the XML specification.
     *
     * @author Alex Matevossian
     * @author David Beaumont
     * @since 15.0
     */
    @GwtCompatible
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 18 20:55:09 GMT 2022
    - 6.5K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/features/TesterRequirements.java

        this.presentFeatures = Helpers.copyToSet(presentFeatures);
        this.absentFeatures = Helpers.copyToSet(absentFeatures);
      }
    
      public TesterRequirements(TesterRequirements tr) {
        this(tr.getPresentFeatures(), tr.getAbsentFeatures());
      }
    
      public TesterRequirements() {
        this(Collections.<Feature<?>>emptySet(), Collections.<Feature<?>>emptySet());
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 20 11:19:03 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                    <section><title>Properties</title>
                        <table>
                            <thead><tr><td>Name</td></tr></thead>
                            <tr><td>readWriteProperty</td></tr>
                            <tr><td>readOnlyProperty</td></tr>
                            <tr><td>writeOnlyProperty</td></tr>
                        </table>
                    </section>
                </chapter>
            ''')
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
  7. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    > 0) { text += "<table border=\"1\" cellpadding=\"5\" cellspacing=\"0\">"; if (headers.length > 0) { text += "<tr>"; headerArray = headers.split(","); for (i = 0; i < headerArray.length; i++) { text += "<th>" + headerArray[i] + "</th>"; } text += "</tr>"; } rows = content.split(";"); for (i = 0; i < rows.length; i++) { if (rows[i].length > 0) { columns = rows[i].split(","); text += "<tr>"; for (j = 0; j < columns.length; j++) { text += "<td" + (number.test(columns[j]) ? " align=\"right\">" : ">")...
    ZIP Archive
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 23.4K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/log/admin_log.jsp

                                                <thead>
                                                <tr>
                                                    <th><la:message key="labels.log_file_name"/></th>
                                                    <th><la:message key="labels.log_file_date"/></th>
                                                </tr>
                                                </thead>
                                                <tbody>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/elevateword/admin_elevateword_details.jsp

                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.elevate_word_permissions"/></th>
                                            <td>${f:br(f:h(permissions))}<la:hidden
                                                    property="permissions"/></td>
                                        </tr>
                                        <tr>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 8.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Range.java

     *
     * <table>
     * <caption>Range Types</caption>
     * <tr><th>Notation        <th>Definition               <th>Factory method
     * <tr><td>{@code (a..b)}  <td>{@code {x | a < x < b}}  <td>{@link Range#open open}
     * <tr><td>{@code [a..b]}  <td>{@code {x | a <= x <= b}}<td>{@link Range#closed closed}
     * <tr><td>{@code (a..b]}  <td>{@code {x | a < x <= b}} <td>{@link Range#openClosed openClosed}
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
Back to top