- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 336 for literal (0.26 sec)
-
src/main/java/org/codelibs/core/xml/SAXParserFactoryUtil.java
return newSAXParser(newInstance()); } /** * 指定の{@link SAXParserFactory}を使って{@link SAXParser}の新しいインスタンスを作成します。 * * @param factory * {@link SAXParserFactory}。{@literal null}であってはいけません * @return {@link SAXParser}の新しいインスタンス */ public static SAXParser newSAXParser(final SAXParserFactory factory) { assertArgumentNotNull("factory", factory); try {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/OutputStreamUtil.java
* {@link OutputStream}用のユーティリティクラスです。 * * @author shot */ public abstract class OutputStreamUtil { /** * {@link FileOutputStream}を作成します。 * * @param file * ファイル。{@literal null}であってはいけません * @return ファイルへ出力する{@link FileOutputStream} * @see FileOutputStream#FileOutputStream(File) */ public static FileOutputStream create(final File file) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
internal/s3select/jstream/errors.go
s := fmt.Sprintf("%s %s: %s", e.msg, e.context, loc) if e.readerErr != nil { s += "\nreader error: " + e.readerErr.Error() } return s } // quoteChar formats c as a quoted character literal func quoteChar(c byte) string { // special cases - different from quoted strings if c == '\'' { return `'\''` } if c == '"' { return `'"'` } // use quoted string with different quotation marks
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 1.3K bytes - Viewed (0) -
istioctl/pkg/writer/compare/testdata/configdump_diff.json
"tag": "istio.canonical_revision", "literal": { "value": "latest" } }, { "tag": "istio.canonical_service", "literal": { "value": "namespace-istio-waypoint"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Mar 12 10:02:09 UTC 2024 - 51.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/AnnotationUtil.java
* アノテーションのためのユーティリティクラスです。 * * @author higa */ public abstract class AnnotationUtil { /** * アノテーションの要素を名前と値の{@link Map}として返します。 * * @param annotation * アノテーション。{@literal null}であってはいけません * @return アノテーションの要素の名前と値からなる{@link Map} */ public static Map<String, Object> getProperties(final Annotation annotation) { assertArgumentNotNull("annotation", annotation);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy
String blockName = tr.td[0].text().trim() gradlebuild.docs.dsl.docbook.model.BlockDoc blockDoc = project.getBlock(blockName) tr.children = { td { link(linkend: blockDoc.id) { literal("$blockName { }")} } td(blockDoc.description) } } def mergeTypes(Element typeTable, DslDocModel model) { typeTable.addFirst { thead { tr {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/net/JarURLConnectionUtil.java
* @author higa */ public abstract class JarURLConnectionUtil { /** * {@link JarURLConnection#getJarFile()}の例外処理をラップするメソッドです。 * * @param conn * {@link JarURLConnection}。{@literal null}であってはいけません * @return {@link JarFile} */ public static JarFile getJarFile(final JarURLConnection conn) { assertArgumentNotNull("conn", conn); try {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/ArrayBasedEscaperMap.java
* proportional to the highest valued character that has a replacement. For example a replacement * map containing the single character '{@literal \}u1000' will require approximately 16K of memory. * As such sharing this data structure between escaper instances is the primary goal of this class. * * @author David Beaumont * @since 15.0 */ @GwtCompatible
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/DecimalFormatSymbolsUtil.java
return getDecimalFormatSymbols(LocaleUtil.getDefault()); } /** * {@link DecimalFormatSymbols}を返します。 * * @param locale * ロケール。{@literal null}であってはいけません * @return {@link DecimalFormatSymbols} */ public static DecimalFormatSymbols getDecimalFormatSymbols(final Locale locale) { assertArgumentNotNull("locale", locale);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
} /** * 数値の文字列での表記をグルーピングセパレータを削除し、小数点を.であらわした標準形に正規化します。 * * @param s * 数値を表す文字列 * @param locale * ロケール。{@literal null}であってはいけません * @return 正規化された文字列 */ public static String normalize(final String s, final Locale locale) { assertArgumentNotNull("locale", locale); if (s == null) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.4K bytes - Viewed (0)