- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 116 for icon (0.98 sec)
-
.idea/icon.png
icon.png...
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Nov 06 18:13:24 UTC 2025 - 2K bytes - Viewed (0) -
.idea/icon.png
icon.png...
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Apr 06 19:03:14 UTC 2020 - 2K bytes - Viewed (0) -
docs/assets/images/icon-square.png
icon-square.png...
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 1.4K bytes - Viewed (0) -
docs/en/docs/img/icon-white.svg
icon-white.svg...
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Feb 04 20:56:59 UTC 2024 - 1.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/ConsoleIcon.java
import org.jline.terminal.Terminal; /** * Console icons for Maven upgrade tool output. * Each icon has a Unicode character and an ASCII fallback. * The appropriate representation is chosen based on the terminal's charset capabilities. */ public enum ConsoleIcon { /** * Success/completion icon. */ SUCCESS('✓', "[OK]"), /** * Error/failure icon. */ ERROR('✗', "[ERROR]"), /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Jul 15 09:35:08 UTC 2025 - 3.1K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/ConsoleIconTest.java
for (ConsoleIcon icon : ConsoleIcon.values()) { String result = icon.getIcon(null); assertNotNull(result, "Icon result should not be null for " + icon); // Result should be either Unicode or ASCII fallback depending on default charset String expectedUnicode = String.valueOf(icon.getUnicodeChar()); String expectedAscii = icon.getAsciiFallback(); assertTrue(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Jul 15 09:35:08 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java
@Test @DisplayName("should handle icon rendering based on terminal capabilities") void shouldHandleIconRenderingBasedOnTerminalCapabilities() { UpgradeContext context = TestUtils.createMockContext(Paths.get("/test")); // Test that icon rendering doesn't throw exceptions // The actual icons used depend on the terminal's charset capabilities context.success("Icon rendering test");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Jul 15 09:35:08 UTC 2025 - 3.3K bytes - Viewed (0) -
docs/en/mkdocs.yml
extra: social: - icon: fontawesome/brands/github-alt link: https://github.com/fastapi/fastapi - icon: fontawesome/brands/discord link: https://discord.gg/VQjSZaeJmf - icon: fontawesome/brands/twitter link: https://x.com/fastapi - icon: fontawesome/brands/linkedin link: https://www.linkedin.com/company/fastapi - icon: fontawesome/solid/globe link: https://tiangolo.comRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:44:55 UTC 2025 - 9.2K bytes - Viewed (0) -
mkdocs.yml
edit_uri: "" copyright: 'Copyright © 2022 Block, Inc.' theme: name: 'material' favicon: assets/images/icon-square.png logo: assets/images/icon-square.png palette: - media: "(prefers-color-scheme: light)" scheme: default primary: teal accent: blue toggle: icon: octicons/sun-24 name: "Switch to Dark Mode" - media: "(prefers-color-scheme: dark)" scheme: slate
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Nov 21 07:19:31 UTC 2024 - 3.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeContext.java
} // Semantic logging methods with icons for upgrade operations /** * Logs a successful operation with a checkmark icon. */ public void success(String message) { logger.info(getCurrentIndent() + ConsoleIcon.SUCCESS.getIcon(terminal) + " " + message); } /** * Logs an error with an X icon. */ public void failure(String message) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 4.7K bytes - Viewed (0)