- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 549 for pnum (0.05 sec)
-
guava/src/com/google/common/io/Files.java
* Returns a predicate that returns the result of {@link File#isFile} on input files. * * @since 15.0 */ public static Predicate<File> isFile() { return FilePredicate.IS_FILE; } private enum FilePredicate implements Predicate<File> { IS_DIRECTORY { @Override public boolean apply(File file) { return file.isDirectory(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:03:12 UTC 2024 - 33.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* long[])}. * * @since 2.0 */ public static Comparator<long[]> lexicographicalComparator() { return LexicographicalComparator.INSTANCE; } private enum LexicographicalComparator implements Comparator<long[]> { INSTANCE; @Override public int compare(long[] left, long[] right) { int minLength = Math.min(left.length, right.length);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 29.3K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Longs.java
* long[])}. * * @since 2.0 */ public static Comparator<long[]> lexicographicalComparator() { return LexicographicalComparator.INSTANCE; } private enum LexicographicalComparator implements Comparator<long[]> { INSTANCE; @Override public int compare(long[] left, long[] right) { int minLength = Math.min(left.length, right.length);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:52:18 UTC 2024 - 29K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.handlerParameter=Parameter labels.handlerScript=Skripte labels.popularWord=Beliebte Wörter labels.ignoreFailureType=Ignorierte Fehlertypen labels.lastAccessTime=Letzter Zugriff labels.notificationTo=Benachrichtigung an labels.num=Anzahl labels.pn=Seitenzahl labels.protocolScheme=Schema labels.purgeByBots=Bereinige Aufrufe von Bots labels.purgeSearchLogDay=Bereinige Suchprotokoll labels.query=Anfrage labels.queryId=Anfrage-ID labels.rt=rt
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 42.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Notification To */ public static final String LABELS_NOTIFICATION_TO = "{labels.notificationTo}"; /** The key of the message: Num */ public static final String LABELS_NUM = "{labels.num}"; /** The key of the message: Page Number */ public static final String LABELS_PN = "{labels.pn}"; /** The key of the message: Scheme */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 146.4K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.handlerParameter = Paramètres labels.handlerScript = Scripts labels.popularWord = Mots populaires labels.ignoreFailureType = Type d'échec ignoré labels.lastAccessTime = Dernier accès labels.notificationTo = Notification à labels.num = Numéro labels.pn = Numéro de page labels.protocolScheme = Schème labels.purgeByBots = Purge par les bots labels.logLevel = Niveau de journalisation labels.purgeSearchLogDay = Purger le journal de recherche
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 46.6K bytes - Viewed (0) -
api/go1.4.txt
# CL 159120044 compress/gzip: allow stopping at end of first stream, Russ Cox <******@****.***> pkg compress/gzip, method (*Reader) Multistream(bool) # CL 138800043 crypto: Add SHA3 functions in go.crypto/sha3 to the Hash enum., David Leon Gil <******@****.***> pkg crypto, const SHA3_224 = 10 pkg crypto, const SHA3_224 Hash pkg crypto, const SHA3_256 = 11 pkg crypto, const SHA3_256 Hash pkg crypto, const SHA3_384 = 12
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 12 03:01:01 UTC 2014 - 34K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMap.java
* over the (arbitrary, potentially mutable) Entry objects actually stored in entryArray. */ return RegularImmutableMap.fromEntries(entryArray); } } private static <K extends Enum<K>, V> ImmutableMap<K, ? extends V> copyOfEnumMap( EnumMap<?, ? extends V> original) { @SuppressWarnings("unchecked") // the best we could do to make copyOf(Map) compile
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 44.6K bytes - Viewed (0) -
src/main/resources/fess_label_ko.properties
labels.handlerName = 핸들러 이름 labels.handlerParameter = 매개 변수 labels.handlerScript = 스크립트 labels.popularWord = 인기 검색어 labels.ignoreFailureType = 무시된 실패 유형 labels.lastAccessTime = 마지막 액세스 시간 labels.notificationTo = 알림 수신자 labels.num = 수 labels.pn = 페이지 번호 labels.protocolScheme = 스키마 labels.purgeByBots = Bots 삭제 labels.purgeSearchLogDay = 검색 로그 삭제 labels.query = 쿼리 labels.queryId = 쿼리 ID labels.rt = rt labels.searchLog = 검색 로그
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 44K bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
} boolean usesKeyReferences() { return keyStrength != Strength.STRONG; } boolean usesValueReferences() { return valueStrength != Strength.STRONG; } enum Strength { /* * TODO(kevinb): If we strongly reference the value and aren't loading, we needn't wrap the * value. This could save ~8 bytes per entry. */ STRONG { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 149.2K bytes - Viewed (0)