- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 582 for bitname (0.05 sec)
-
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) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
public DfsReferralData getDfsReferral () { return this.dfsReferral; } /** * {@inheritDoc} * * @see jcifs.SmbResourceLocator#getName() */ @Override public String getName () { String urlpath = getURLPath(); String shr = getShare(); if ( urlpath.length() > 1 ) { int i = urlpath.length() - 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
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) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
if (isNumeric) { assertEquals(Integer.parseInt(scopeId), parsed.getScopeId()); } else { assertEquals(scopeId, parsed.getScopedInterface().getName()); } Inet6Address reparsed = (Inet6Address) InetAddresses.forString(InetAddresses.toAddrString(parsed)); assertEquals(reparsed, parsed);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeMultisetTest.java
@AndroidIncompatible // Reflection bug, or actual binary compatibility problem? public void testElementSetBridgeMethods() { for (Method m : TreeMultiset.class.getMethods()) { if (m.getName().equals("elementSet") && m.getReturnType().equals(SortedSet.class)) { return; } } fail("No bridge method found"); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 12.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
assertThat(UnsignedBytes.join(",", (byte) 128, (byte) -1)).isEqualTo("128,255"); } private static String unsafeComparatorClassName() { return UnsignedBytes.LexicographicalComparatorHolder.class.getName() + "$UnsafeComparator"; } private static boolean unsafeComparatorAvailable() { // See Java Puzzler #44 // Use reflection instead of catching NoClassDefFoundError try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 13.4K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
* include the '{@code .}'. * * <p><b>Note:</b> This method simply returns everything after the last '{@code .}' in the file's * name as determined by {@link File#getName}. It does not account for any filesystem-specific * behavior that the {@link File} API does not already account for. For example, on NTFS it will
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:03:12 UTC 2024 - 33.1K 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/log/bsbhv/BsClickLogBhv.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 ClickLog> 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 - 9.5K bytes - Viewed (0)