- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 382 for poster (0.05 sec)
-
guava/src/com/google/common/io/Files.java
return Traverser.forTree(FILE_TREE); } private static final SuccessorsFunction<File> FILE_TREE = file -> { // check isDirectory() just because it may be faster than listFiles() on a non-directory if (file.isDirectory()) { File[] files = file.listFiles(); if (files != null) { return unmodifiableList(Arrays.asList(files)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
cmd/erasure-sets.go
// This function currently supports // - CRCMOD // - SIPMOD // - all new algos. func sipHashMod(key string, cardinality int, id [16]byte) int { if cardinality <= 0 { return -1 } // use the faster version as per siphash docs // https://github.com/dchest/siphash#usage k0, k1 := binary.LittleEndian.Uint64(id[0:8]), binary.LittleEndian.Uint64(id[8:16]) sum64 := siphash.Hash(k0, k1, []byte(key))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1) -
src/main/resources/fess_label_es.properties
labels.user_telephoneNumber=Número de teléfono labels.telephoneNumber=Número de teléfono labels.user_homePhone=Teléfono (casa) labels.homePhone=Teléfono (casa) labels.user_homePostalAddress=Código postal (casa) labels.homePostalAddress=Código postal (casa) labels.user_labeledURI=labeledURI labels.labeledURI=labeledURI labels.user_roomNumber=Número de habitación labels.roomNumber=Número de habitación labels.user_description=Descripción
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.4K bytes - Viewed (0) -
src/main/resources/fess_label_ko.properties
labels.menu_maintenance=유지보수 labels.menu_related_content=관련 콘텐츠 labels.menu_related_query=관련 쿼리 labels.sidebar.placeholder_search=검색... labels.menu_plugin=플러그인 labels.menu_storage=스토리지 labels.sidebar.menu=메뉴 labels.footer.copyright=©2024 <a href="https://github.com/codelibs">CodeLibs 프로젝트</a>. labels.search=검색 labels.similar_doc_result_status=유사한 결과를 표시하고 있습니다.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Lists.java
* c, d, e]} with a partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer list * containing two inner lists of three and two elements, all in the original order. * * <p>The outer list is unmodifiable, but reflects the latest state of the source list. The inner
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
src/main/resources/fess_label_pt_BR.properties
labels.facsimileTelephoneNumber=Número de fax labels.user_postOfficeBox=Caixa postal labels.postOfficeBox=Caixa postal labels.user_initials=Iniciais labels.initials=Iniciais labels.user_carLicense=Carteira de motorista labels.carLicense=Carteira de motorista labels.user_mobile=Celular labels.mobile=Celular labels.user_postalAddress=Endereço postal labels.postalAddress=Endereço postal labels.user_city=Cidade labels.city=Cidade
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.1K bytes - Viewed (0) -
src/main/resources/fess_label_zh_CN.properties
labels.menu_maintenance=维护 labels.menu_related_content=相关内容 labels.menu_related_query=相关查询 labels.sidebar.placeholder_search=搜索... labels.menu_plugin=插件 labels.menu_storage=存储 labels.sidebar.menu=菜单 labels.footer.copyright=©2024 <a href="https://github.com/codelibs">CodeLibs项目</a>. labels.search=搜索 labels.similar_doc_result_status=显示相似结果。
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.5K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.description=Description labels.user_title=Titre labels.title=Titre labels.user_pager=Téléavertisseur labels.pager=Téléavertisseur labels.user_street=Rue labels.street=Rue labels.user_postalCode=Code postal labels.postalCode=Code postal labels.user_physicalDeliveryOfficeName=Bureau labels.physicalDeliveryOfficeName=Bureau labels.user_destinationIndicator=Indicateur de destination labels.destinationIndicator=Indicateur de destination
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
public static final String ERRORS_HEADER = "{errors.header}"; /** The key of the message: </ul> */ public static final String ERRORS_FOOTER = "{errors.footer}"; /** The key of the message: <li><i class="fa fa-exclamation-circle"></i> */ public static final String ERRORS_PREFIX = "{errors.prefix}"; /** The key of the message: </li> */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
* * @since 15.0 */ public static final MediaType KEY_ARCHIVE = createConstant(APPLICATION_TYPE, "pkcs12"); /** * This is a non-standard media type, but is commonly used in serving hosted binary files as it is * <a href="http://code.google.com/p/browsersec/wiki/Part2#Survey_of_content_sniffing_behaviors"> * known not to trigger content sniffing in current browsers</a>. It <i>should not</i> be used in
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0)