- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 678 for getName (0.06 sec)
-
src/main/java/org/codelibs/core/io/ResourceUtil.java
* クラス。{@literal null}であってはいけません * @return リソースパス */ public static String getResourcePath(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); return clazz.getName().replace('.', '/') + ".class"; } /** * コンテキストクラスローダを返します。 * * @return コンテキストクラスローダ */ public static ClassLoader getClassLoader() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/NetbiosAddress.java
* * @return the name type */ int getNameType (); /** * @return the name for this address */ NetbiosName getName ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* * @return The last component of the URL associated with this SMB * resource or <code>smb://</code> if the resource is <code>smb://</code> * itself. */ String getName (); /** * * @return dfs referral data */ DfsReferralData getDfsReferral (); /** * Everything but the last component of the URL representing this SMB
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
long allocationSize; int extFileAttributes; int fileNameLength; int eaSize; int shortNameLength; String shortName; String filename; public String getName() { return filename; } public int getType() { return SmbFile.TYPE_FILESYSTEM; } public int getAttributes() { return extFileAttributes; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
*/ @VisibleForTesting static class GetCheckedTypeValidatorHolder { static final String CLASS_VALUE_VALIDATOR_NAME = GetCheckedTypeValidatorHolder.class.getName() + "$ClassValueValidator"; static final GetCheckedTypeValidator BEST_VALIDATOR = getBestValidator(); @J2ObjCIncompatible // ClassValue enum ClassValueValidator implements GetCheckedTypeValidator {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:40:56 UTC 2024 - 11.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
// } else if (clazz == ModelResolver.class) { // return (T) new DefaultModelResolver(); } throw new NoSuchElementException("No service for " + clazz.getName()); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
writeLastUpdated(touchfile, key, null); } String getMetadataKey(ArtifactRepository repository, File file) { return repository.getId() + '.' + file.getName() + LAST_UPDATE_TAG; } String getRepositoryKey(ArtifactRepository repository) { StringBuilder buffer = new StringBuilder(256); Proxy proxy = repository.getProxy();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
final List<WebConfig> webConfigList = crawlingConfigHelper.getAllWebConfigList(false, false, false, null); for (final WebConfig webConfig : webConfigList) { itemList.add(createItem(webConfig.getName(), webConfig.getId().toString())); } RenderDataUtil.register(data, "webConfigItems", itemList); } protected Map<String, String> createItem(final String label, final String value) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsSearchLogBhv.java
return updateEntity(source, result); } catch (InstantiationException | IllegalAccessException e) { final String msg = "Cannot create a new instance: " + entityType.getName(); throw new IllegalBehaviorStateException(msg, e); } } protected <RESULT extends SearchLog> RESULT updateEntity(Map<String, Object> source, RESULT result) { return result;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/DataConfigDbm.java
(et, vl) -> ((DataConfig) et).setHandlerScript(DfTypeUtil.toString(vl)), "handlerScript"); setupEpg(_epgMap, et -> ((DataConfig) et).getName(), (et, vl) -> ((DataConfig) et).setName(DfTypeUtil.toString(vl)), "name"); setupEpg(_epgMap, et -> ((DataConfig) et).getPermissions(), (et, vl) -> ((DataConfig) et).setPermissions((String[]) vl), "permissions");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13.8K bytes - Viewed (0)