Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 231 for tale (0.02 seconds)

  1. dbflute_fess/playsql/replace-schema.sql

    create table DUMMY_MEMBER(
        MEMBER_ID INTEGER IDENTITY NOT NULL PRIMARY KEY,
        MEMBER_NAME VARCHAR(200) NOT NULL,
        MEMBER_ACCOUNT VARCHAR(50) NOT NULL,
        MEMBER_STATUS_CODE CHAR(3) NOT NULL,
        FORMALIZED_DATETIME DATETIME,
        BIRTHDATE DATE,
        REGISTER_DATETIME DATETIME NOT NULL,
        REGISTER_USER VARCHAR(200) NOT NULL,
        UPDATE_DATETIME DATETIME NOT NULL,
        UPDATE_USER VARCHAR(200) NOT NULL,
        VERSION_NO BIGINT NOT NULL
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 449 bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                    </c:if>
    
                                    <div class="row">
                                        <div class="col-sm-12">
                                            <table class="table table-bordered table-striped" aria-label="<la:message key="labels.storage_list" />">
                                                <thead>
                                                <tr>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.7K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                if (elementName.equals("table")) {
                    if (currentTable != null) {
                        throw new UnsupportedOperationException("A table within a table is not supported.");
                    }
                    currentTable = document.createElement("table");
                    nodes.push(currentTable);
                    return true;
                }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 21 06:20:45 GMT 2025
    - 29.3K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/admin/user/admin_user_details.jsp

                                        <la:errors/>
                                    </div>
                                        <%-- Form Fields --%>
                                    <table class="table table-bordered" aria-label="<la:message key="labels.user_details" />">
                                        <tbody>
                                        <tr>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

            assertNull(result);
        }
    
        // Test assistFirstOutsideSqlOption with null table name
        @Test
        public void test_assistFirstOutsideSqlOption_nullTableName() {
            OutsideSqlOption result = invokerAssistant.assistFirstOutsideSqlOption(null);
            assertNull(result);
        }
    
        // Test assistFirstOutsideSqlOption with empty table name
        @Test
        public void test_assistFirstOutsideSqlOption_emptyTableName() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11K bytes
    - Click Count (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

                    "Minimum supported '$minimumSupported' was not found in available versions: $allVersions"
                }
                val versionsByMinor = allVersions
                    .groupBy { it.take(3) } // e.g. 1.9
                    .toSortedMap()
                val latests = buildList {
                    versionsByMinor.entries.forEachIndexed { idx, entry ->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Oct 29 08:29:55 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        }
    
        private void addTOC(Document document) {
            Element tocSection = document.body().select("section.topic").first().before("<section class='table-of-contents'/>").previousElementSibling();
            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            Elements h23elements = document.select("h2,h3");
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 03 01:59:51 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  8. src/main/webapp/js/marked.min.js

    {0,3}(?:[*+-]|\d{1,9}[.)])/,se=/^(?!bull |blockCode|fences|blockquote|heading|html|table)((?:.|\n(?!\s*?\n|bull |blockCode|fences|blockquote|heading|html|table))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,ie=k(se).replace(/bull/g,Q).replace(/blockCode/g,/(?: {4}| {0,3}\t)/).replace(/fences/g,/ {0,3}(?:`{3,}|~{3,})/).replace(/blockquote/g,/ {0,3}>/).replace(/heading/g,/ {0,3}#{1,6}/).replace(/html/g,/ {0,3}<[^\n>]+>\n/).replace(/\|table/g,"").getRegex(),Ee=k(se).replace(/bull/g,Q).replace(/blockCode/g,/(?: {4}| {0...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 41.5K bytes
    - Click Count (0)
  9. CONTRIBUTING.md

    We may ask you to answer these questions directly in the GitHub issue or (for large changes) in a shared Google Doc.
    
    Please note that some features may be out of the team's current focus, and it can take significant time for the team to review the PR thoroughly and address it fully.
    
    ### Security vulnerabilities
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java

            // empty
        }
    
        /**
         * Initializes the markdown parser, HTML renderer, and sanitizer.
         */
        @PostConstruct
        public void init() {
            // Configure commonmark with table extension
            final Iterable<Extension> extensions = Arrays.asList(TablesExtension.create());
    
            markdownParser = Parser.builder().extensions(extensions).build();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 5.3K bytes
    - Click Count (0)
Back to Top