Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 146 for TD (0.01 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

    <table>
        <tr><th>column1</th><th>column2</th></tr>
        <tr><td>cell1</td><td>cell2</td></tr>
    </table>
    '''
    
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook) == '''<table><thead><tr><td>column1</td><td>column2</td></tr></thead><tr><td>cell1</td><td>cell2</td></tr></table>'''
        }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 14.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                                            <td>${f:h(data.url)}</td>
                                                            <td>${f:h(data.errorName)}</td>
                                                            <td><fmt:formatDate
                                                                    value="${fe:date(data.lastAccessTime)}"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java

            Element thead = getChild(classDoc.getPropertiesTable(), "thead");
            Element tr = getChild(thead, "tr");
            List<Element> header = children(tr, "td");
            if (header.size() < 1) {
                throw new RuntimeException(String.format("Expected at least 1 <td> in <thead>/<tr>, found: %s", header));
            }
            Map<String, Element> inheritedValueTitleMapping = new HashMap<String, Element>();
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp

                                                    <tr>
                                                        <td>${f:h(artifact.type)}</td>
                                                        <td>${f:h(artifact.name)}</td>
                                                        <td>${f:h(artifact.version)}</td>
                                                        <td>
                                                            <c:if test="${editable}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth.jsp

                                                                <la:message key="labels.file_auth_any"/>
                                                            </c:if> ${f:h(data.port)}</td>
                                                            <td>${f:h(data.fileConfig.name)}</td>
                                                        </tr>
                                                    </c:forEach>
                                                    </tbody>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 27 06:24:23 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/boostdoc/admin_boostdoc_details.jsp

                                            <td>${f:h(urlExpr)}<la:hidden property="urlExpr"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message
                                                    key="labels.boost_document_rule_boost_expr"/></th>
                                            <td>${f:h(boostExpr)}<la:hidden property="boostExpr"/></td>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/relatedquery/admin_relatedquery_details.jsp

                                            <td>${f:h(term)}<la:hidden property="term"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message
                                                    key="labels.related_query_queries"/></th>
                                            <td>${f:h(queries)}<la:hidden property="queries"/></td>
                                        </tr>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig.jsp

                                                            data-href="${contextPath}/admin/dataconfig/details/4/${f:u(data.id)}">
                                                        <td>${f:h(data.name)}</td>
                                                        <td class="text-center"><c:if
                                                                test="${data.available=='true'}">
    																	<span class="badge bg-primary"><la:message
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 9.3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym.jsp

                                                        <td>${f:h(data.inputs)}</td>
                                                        <td>${f:h(data.outputs)}</td>
                                                    </tr>
                                                </c:forEach>
                                                </tbody>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 24 13:43:18 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  10. compat/maven-embedder/src/test/java/org/apache/maven/cli/CLIManagerDocumentationTest.java

                    } else {
                        sb.append(' ');
                    }
                }
                sb.append("</code>");
    
                sb.append("</td>");
                sb.append("<td>");
                sb.append(option.getDescription());
                sb.append("</td>");
    
                sb.append("</tr>");
                sb.append(LS);
            }
            sb.append("</table>");
            return sb.toString();
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top