- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 52 for tablist (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java
import java.util.Arrays; import javax.annotation.PostConstruct; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.commonmark.Extension; import org.commonmark.ext.gfm.tables.TablesExtension; import org.commonmark.parser.Parser; import org.commonmark.renderer.html.HtmlRenderer; import org.owasp.html.HtmlPolicyBuilder; import org.owasp.html.PolicyFactory; /**
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) -
.teamcity/scripts/CheckBadMerge.java
*/ public class CheckBadMerge { private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool(); private static final List<String> MONITORED_PATHS = Collections.unmodifiableList(Arrays.asList( "subprojects/docs/src/docs/release/notes.md", "platforms/documentation/docs/src/docs/release/notes.md", "platforms/documentation/docs/src/docs/release/release-notes-assets/",Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 16:25:09 GMT 2026 - 9K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java
* limitations under the License. */ package gradlebuild.docs; import com.vladsch.flexmark.ext.anchorlink.AnchorLinkExtension; import com.vladsch.flexmark.ext.tables.TablesExtension; import com.vladsch.flexmark.html.HtmlRenderer; import com.vladsch.flexmark.parser.Parser; import com.vladsch.flexmark.util.options.MutableDataSet; import org.gradle.api.DefaultTask;
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue May 27 09:07:14 GMT 2025 - 3.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/RelevanceEvaluationResultTest.java
public class RelevanceEvaluationResultTest extends UnitFessTestCase { @Test public void test_withRelevantDocs() { List<String> docIds = Arrays.asList("doc1", "doc2", "doc3"); List<Integer> indexes = Arrays.asList(1, 2, 3); RelevanceEvaluationResult result = RelevanceEvaluationResult.withRelevantDocs(docIds, indexes); assertTrue(result.isHasRelevantResults());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 7.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java
if (name.equals("li")) { unwindTo(Arrays.asList("ul", "ol"), visitor); } else if (name.equals("dt") || name.endsWith("dd")) { unwindTo(Arrays.asList("dl"), visitor); } else if (name.equals("tr")) { unwindTo(Arrays.asList("table", "thead", "tbody"), visitor); } else if (name.equals("th") || name.endsWith("td")) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 5.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
BsUser entity1 = new BsUser(); entity1.setName("name1"); BsUser entity2 = new BsUser(); entity2.setName("name2"); List<BsUser> entityList = Arrays.asList(entity1, entity2); RenderDataUtil.register(data, "entities", entityList); Object result = data.getDataMap().get("entities"); assertNotNull(result); assertTrue(result instanceof List);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
dbflute_fess/_readme.txt
which creates documents, for example, SchemaHTML, HistoryHTML to the "output/doc" directory. manage.bat(sh) => 23 (generate): A execution command of Generate task which generates classes corresponding your tables, for example, entities, condition-beans to specified directories by DBFlute properties on "dfprop" directory. Generated structures (directories and classes) are like this:
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 2.5K bytes - Click Count (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# If you want to exclude some tables in generating target, # you should specify the list of excepted table hints. # e.g. list:{PRODUCT_STATUS ; prefix:TMP_} # This is only for the main schema. Additional schemas are unconcerned. # And ReplaceSchema task basically ignores this. # # Normally this 'except' means no getting meta data for excepted tables.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 7.3K bytes - Click Count (0) -
dbflute_fess/dfprop/littleAdjustmentMap.dfprop
# - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o quoteTableNameList: (NotRequired - Default list:{}) # The list of table DB names that need to be quoted. Specified tables is quoted on auto-generated SQL. # #; quoteTableNameList = list:{} # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 25 06:04:16 GMT 2015 - 8.8K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt
} ?: error("Can't find the contributors section end in the release notes $releaseNotes.") return Triple(releaseNotesLines.subList(0, contributorSectionBeginIndex), releaseNotesLines.subList(contributorSectionBeginIndex, contributorSectionEndIndex), releaseNotesLines.subList(contributorSectionEndIndex, releaseNotesLines.size)) } @Internal protected fun getContributorsFromPullRequests(): Set<GitHubUser> {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jun 24 07:54:08 GMT 2025 - 5.7K bytes - Click Count (0)