- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for symbol (0.06 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* <li>Appending alphanumeric characters (0-9, A-Z, a-z) to the buffer.</li> * <li>Appending symbol characters (!-/, :-@, [-`, {-~) to the buffer.</li> * <li>Optionally removing duplicate terms based on a flag.</li> * <li>Limiting the maximum size of alphanumeric and symbol terms.</li> * </ul> * * <p>The {@link TextNormalizeContext} class provides a fluent API to configure the text
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
final DecimalFormatSymbols symbol = getDecimalFormatSymbols(locale); return Character.toString(symbol.getDecimalSeparator()); } private static DecimalFormatSymbols getDecimalFormatSymbols(final Locale locale) { DecimalFormatSymbols symbol; if (locale != null) { symbol = DecimalFormatSymbolsUtil.getDecimalFormatSymbols(locale); } else {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
if addr.Sym == nil || addr.Name != obj.NAME_EXTERN && addr.Name != obj.NAME_STATIC || addr.Scale != 0 || addr.Reg != 0 { p.errorf("%s symbol %q must be a symbol(SB)", pseudo, symbolName(addr)) return false } if !offsetOk && addr.Offset != 0 { p.errorf("%s symbol %q must not be offset from SB", pseudo, symbolName(addr)) return false } return true }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0) -
docs/en/docs/tutorial/header-params.md
`Header` has a little extra functionality on top of what `Path`, `Query` and `Cookie` provide. Most of the standard headers are separated by a "hyphen" character, also known as the "minus symbol" (`-`). But a variable like `user-agent` is invalid in Python. So, by default, `Header` will convert the parameter names characters from underscore (`_`) to hyphen (`-`) to extract and document the headers.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
assertEquals("\"中文\"", result[2]); // Emoji and special symbols - quotes preserved value = "\"🚀rocket\",\"@symbol\",\"#hashtag\""; result = KuromojiCSVUtil.parse(value); assertEquals(3, result.length); assertEquals("🚀rocket", result[0]); assertEquals("@symbol", result[1]); assertEquals("\"#hashtag\"", result[2]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
public void setMaxAlphanumTermSize(final int maxAlphanumTermSize) { this.maxAlphanumTermSize = maxAlphanumTermSize; } /** * Sets the maximum size of a symbol term. * @param maxSymbolTermSize The max size of a symbol term. */ public void setMaxSymbolTermSize(final int maxSymbolTermSize) { this.maxSymbolTermSize = maxSymbolTermSize; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 30.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger(); } /** * Gets the maximum size for symbol terms from configuration. * * @return the maximum symbol term size */ protected int getMaxSymbolTermSize() { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
guava/pom.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jun 06 21:05:32 UTC 2025 - 9.4K bytes - Viewed (0) -
.github/workflows/update-rbe.yml
# metadata. gcr.io helpfully includes it in the header of the response # as docker-content-digest: sha256:[digest]. Note we use egrep to # match exactly sha256:<hash> because curl may include a ^M symbol at # the end of the line. # See https://cloud.google.com/architecture/using-container-images#exploring_image_manifests_digests_and_tags echo -n "Trying to map name $1 to tag $2... "
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Sep 01 15:40:11 UTC 2025 - 7.2K bytes - Viewed (1) -
src/cmd/asm/internal/asm/testdata/riscv64.s
MOV $0x1ffffffff0000000, X5 // MOV $2305843008945258496, X5 // 9302f0ff9392f20193d23200 MOV $0x7fffffffffffffff, X5 // MOV $9223372036854775807, X5 // 9302f0ff93d21200 // Converted to load of symbol (AUIPC + LD) MOV $0x80000001, X5 // MOV $2147483649, X5 // 9702000083b20200 MOV $0x100000001, X5 // MOV $4294967297, X5 // 9702000083b20200 MOV $0x0800000010000000, X5 // MOV $576460752571858944, X5 // 9702000083b20200
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 14:19:19 UTC 2025 - 49.1K bytes - Viewed (0)