- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 50 for STYLES (0.11 seconds)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
*/ public abstract class DateConversionUtil { /** * Do not instantiate. */ protected DateConversionUtil() { } /** Array of styles held by {@link DateFormat}. */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /** * Returns the pattern string for {@link DateFormat#SHORT} style in the default locale. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 19.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
*/ public abstract class TimeConversionUtil { /** * Do not instantiate. */ protected TimeConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /** * Returns the pattern string for {@link DateFormat#SHORT} style in the default locale. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 20.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
*/ public abstract class TimestampConversionUtil { /** * Do not instantiate. */ protected TimestampConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /** * Returns the pattern string for {@link DateFormat#SHORT} style using the default locale. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 20.6K bytes - Click Count (0) -
.editorconfig
# EditorConfig helps developers define and maintain consistent # coding styles between different editors and IDEs # editorconfig.org root = true [*] indent_style = space indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true spelling_languages = en-US # Markdown files sometimes need trailing whitespaces. [*.md] trim_trailing_whitespace = false
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Nov 25 07:01:54 GMT 2025 - 582 bytes - Click Count (0) -
src/main/webapp/css/chat.css
/* Chat Page Styles - Bootstrap 5 Compatible with Atlassian Design System */ /* ============================================ Status Lozenge (ADS-style badge) ============================================ */ .status-lozenge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 3px; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
scripts/tests/test_translation_fixer/test_complex_doc/data/en_doc.md
// This is a sample JSON code block "greeting": "Hello, world!" // Greeting } ``` ### Code blocks with comments where language uses different comment styles { #code-blocks-with-different-comment-styles } The following code blocks include comments in different styles based on the language. Fixer tool will not preserve comments in these blocks. ```json { # This is a sample JSON code blockCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 08:08:04 GMT 2026 - 7.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
options.addBooleanOption("-allow-script-in-comments", true); options.setHeader( "<link id=\"hljs-theme\" rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/stackoverflow-light.min.css\">" + "<script>" + "(function() {" + "var mql = window.matchMedia('(prefers-color-scheme: dark)');" +Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
src/main/webapp/js/suggestor.js
keyCode === KEY_CODES.BACKSPACE || keyCode === KEY_CODES.SPACE || keyCode === KEY_CODES.DELETE ); }, /** * Helper function to apply CSS styles to list items */ applyListItemStyle = function ($item, isSelected) { if (isSelected) { if (typeof listSelectedCssInfo === "undefined") { $item.css("background-color", "#e5e5e5");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 11:04:08 GMT 2025 - 13.3K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java
getDokkaExtension(project).getPluginsConfiguration().named("html", DokkaHtmlPluginParameters.class, config -> { config.getCustomStyleSheets().from(extension.getSourceRoot().file("kotlin/styles/gradle.css")); config.getCustomAssets().from(extension.getSourceRoot().file("kotlin/images/logo-icon.svg")); config.getFooterMessage().set("Gradle Kotlin DSL Reference"); }); }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 28 11:34:42 GMT 2025 - 7.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
Element head = document.head(); head.appendElement("link") .attr("rel", "stylesheet") .attr("href", "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/stackoverflow-light.min.css"); head.appendElement("script") .attr("src", "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"); head.appendElement("script")
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)