- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for getBundle (0.14 sec)
-
src/main/java/org/codelibs/core/io/ResourceBundleUtil.java
* リソースバンドの名前。{@literal null}や空文字列であってはいけません * @return {@link ResourceBundle} * @see ResourceBundle#getBundle(String) */ public static final ResourceBundle getBundle(final String name) { assertArgumentNotEmpty("name", name); try { return ResourceBundle.getBundle(name); } catch (final MissingResourceException ignore) { return null; } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceBundleUtilTest.java
final ResourceBundle bundle = ResourceBundleUtil.getBundle("CLMessages", null, this.getClass().getClassLoader()); assertThat(bundle, is(notNullValue())); } /** * @throws Exception */ @Test public void testGetString() throws Exception { final ResourceBundle bundle = ResourceBundleUtil.getBundle("CLMessages");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
final Collection<String> values = queryMap.values(); if (values.stream().anyMatch(s -> s.startsWith(filetypeField))) { final ResourceBundle resources = ResourceBundle.getBundle("fess_label", Locale.ENGLISH); final String[] fileTypes = ComponentUtil.getFileTypeHelper().getTypes(); for (final String fileType : fileTypes) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
* @return リソースバンドル */ protected static ResourceBundle getResourceBundle(final String systemName) { if (!initialized) { initialize(); } return ResourceBundleUtil.getBundle(systemName + MESSAGES, LocaleUtil.getDefault()); } /** * パターンを使用しないで引数を並べたメッセージを返します。 * * @param args * 引数 * @return 引数を並べたメッセージ */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeOutputStream.java
protected synchronized SmbFileHandleImpl ensureOpen () throws CIFSException { return this.handle.ensureOpen(); } /** * @return the handle */ protected SmbPipeHandleImpl getHandle () { return this.handle; } @Override public void close () { // ignore, the shared file descriptor is closed by the pipe handle }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/PipeTest.java
} @Test public void testSRVS () throws DcerpcException, IOException { try ( DcerpcHandle handle = DcerpcHandle .getHandle("ncacn_np:" + getTestServer() + "[\\PIPE\\srvsvc]", withTestNTLMCredentials(getContext())) ) { MsrpcShareEnum rpc = new MsrpcShareEnum(handle.getServerWithDfs()); handle.sendrecv(rpc);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
tensorflow/c/eager/gradients.h
TapeTensor(const TapeTensor& other); ~TapeTensor(); int64_t GetID() const; tensorflow::DataType GetDType() const; AbstractTensorHandle* ZerosLike() const; AbstractTensorHandle* GetHandle() const; private: AbstractTensorHandle* handle_; }; // A tracing/immediate-execution agnostic tape. // // Gradient functions defined for this tape must support handling null incoming
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
protected int max_recv = max_xmit; protected int state = 0; protected DcerpcSecurityProvider securityProvider = null; private static int call_id = 1; public static DcerpcHandle getHandle(String url, NtlmPasswordAuthentication auth) throws UnknownHostException, MalformedURLException, DcerpcException { if (url.startsWith("ncacn_np:")) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.8K bytes - Viewed (0)