- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 615 for sata (0.02 sec)
-
ImmutableMapKeySet.java
verride") L82: @Override L83: @J2ktIncompatible // serialization L84: @GwtIncompatible // serialization L85: Object writeReplace() { L86: return super.writeReplace(); L87: } L88: L89: // No longer used for new writes, but kept so that old data can still be read. L90: @GwtIncompatible // serialization L91: @J2ktIncompatible L92: @SuppressWarnings("unused") L93: private static class KeySetSerializedForm<K> implements Serializable { L94: final ImmutableMap<K, ?> map; L95: L96: Ke...github.com/google/guava/guava/src/com/google/co...Thu Nov 30 21:54:06 UTC 2023 2.7K bytes -
AdminDesignAction.java
op.include("designFile", "designFileName")); L349: }); L350: }); L351: } L352: L353: private HtmlResponse asEditHtml(final EditForm form) { L354: return asHtml(path_AdminDesign_AdminDesignEditJsp).renderWith(data -> { L355: data.register("displayFileName", getJspFile(form.fileName, "view").getAbsolutePath()); L356: }); L357: } L358: L359: public static String decodeJsp(final String value) { L360: return value.replaceAll("<%(?![@-])([\\s\\S]*?)%>",...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 16.1K bytes -
Crawler.java
@Option(name = "-f", aliases = "--fileConfigIds", metaVar = "fileConfigIds", usage = "File Config IDs") L125: public String fileConfigIds; L126: L127: @Option(name = "-d", aliases = "--dataConfigIds", metaVar = "dataConfigIds", usage = "Data Config IDs") L128: public String dataConfigIds; L129: L130: @Option(name = "-p", aliases = "--properties", metaVar = "properties", usage = "Properties File") L131: public String propertiesPath; L132: L133: @Option(name =...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
_readme.txt
L47:for example, entities, parameter-beans to specified L48:directories by DBFlute properties on "dfprop" directory. L49: L50:manage.bat(sh) => 0 (replace-schema): L51:A execution command of ReplaceSchema task L52:which creates your tables and loads data by L53:resources located to the "playsql" directory. L54: L55:manage.bat(sh) => 25 (outside-sql-test): L56:A execution command of OutsideSqlTest task L57:which executes outside-SQL files and you can check L58:whether the SQLs have correct formats....github.com/codelibs/fess/dbflute_fess/_readme.txtSat Jul 04 22:46:31 UTC 2015 2.5K bytes -
TypeResolver.java
mappings.put(var, arg); L436: } L437: } L438: L439: // This is needed when resolving types against a context with wildcards L440: // For example: L441: // class Holder<T> { L442: // void set(T data) {...} L443: // } L444: // Holder<List<?>> should *not* resolve the set() method to set(List<?> data). L445: // Instead, it should create a capture of the wildcard so that set() rejects any List<T>. L446: private static class WildcardCapturer { L447: L448: static final WildcardCapturer INSTANCE...github.com/google/guava/android/guava/src/com/g...Mon Oct 10 19:45:10 UTC 2022 24.2K bytes -
BaseEncoding.java
/** L281: * Returns an encoding that behaves equivalently to this encoding, but omits any padding L282: * characters as specified by <a href="http://tools.ietf.org/html/rfc4648#section-3.2">RFC 4648 L283: * section 3.2</a>, Padding of Encoded Data. L284: */ L285: public abstract BaseEncoding omitPadding(); L286: L287: /** L288: * Returns an encoding that behaves equivalently to this encoding, but uses an alternate character L289: * for padding. L290: * L291: * @throws IllegalArgumentException...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:26:48 UTC 2024 41.8K bytes -
ca.js
requerits",badTime:"L'hora proporcionada no és vàlida",badEmail:"La direcció d'e-mail no és vàlida",badTelephone:"El número de telèfon proporcionat no és vàlid",badSecurityAnswer:"La resposta a la seva pregunta de seguretat és incorrecte",badDate:"La data proporcionada no és vàlida",lengthBadStart:"La seva resposta s'ha d'incloure entre ",lengthBadEnd:" caràcters",lengthTooLongStart:"La seva resposta ha de ser menor a ",lengthTooShortStart:"La seva resposta ha de ser major a ",notConfirmed:"Els valors...github.com/codelibs/fess/src/main/webapp/js/adm...Mon Jan 01 05:12:47 UTC 2018 2.6K bytes -
databaseInfoMap.dfprop
list:{PRODUCT_STATUS ; prefix:TMP_} L53: # This is only for the main schema. Additional schemas are unconcerned. L54: # And ReplaceSchema task basically ignores this. L55: # L56: # Normally this 'except' means no getting meta data for excepted tables. L57: # (so the tables are not existing in SchemaHTML and HistoryHTML and so on). L58: # But you can specify the '@gen' suffix that means generate-only except. L59: # A table with the mark can be treated...github.com/codelibs/fess/dbflute_fess/dfprop/da...Sat Oct 31 23:35:14 UTC 2015 7.3K bytes -
SocketChannelTest.kt
L242: L243:sealed class SocketMode L244: L245:object Channel : SocketMode() { L246: override fun toString(): String = "Channel" L247:} L248: L249:object Standard : SocketMode() { L250: override fun toString(): String = "Standard" L251:} L252: L253:data class TlsInstance( L254: val provider: Provider, L255: val protocol: Protocol, L256: val tlsVersion: TlsVersion, L257: val socketMode: SocketMode, L258: val tlsExtensionMode: TlsExtensionMode, L259:) : SocketMode() { L260: override fun toString():...github.com/square/okhttp/okhttp/src/test/java/o...Mon Jan 08 01:13:22 UTC 2024 8K bytes -
SparseImmutableTable.java
com.google.common.annotations.J2ktIncompatible; L22:import com.google.errorprone.annotations.Immutable; L23:import java.util.LinkedHashMap; L24:import java.util.Map; L25:import java.util.Map.Entry; L26: L27:/** A {@code RegularImmutableTable} optimized for sparse data. */ L28:@GwtCompatible L29:@Immutable(containerOf = {"R", "C", "V"}) L30:@ElementTypesAreNonnullByDefault L31:final class SparseImmutableTable<R, C, V> extends RegularImmutableTable<R, C, V> { L32: static final ImmutableTable<Object, Object, Object>...github.com/google/guava/android/guava/src/com/g...Thu Nov 30 21:54:06 UTC 2023 5.6K bytes