- Sort Score
- Result 10 results
- Languages All
Results 1941 - 1950 of 2,289 for projectId (0.1 sec)
-
src/main/java/jcifs/smb/SmbFileHandleImpl.java
log.trace(String.format("Release %s (%d)", this, usage)); } } /** * {@inheritDoc} * * @see java.lang.Object#finalize() */ @Override protected void finalize () throws Throwable { if ( this.usageCount.get() != 0 && this.open ) { log.warn("File handle was not properly closed: " + this); if ( this.creationBacktrace != null ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java
private long allRecordCount; TestMainSearcher(int allRecordCount) { this.allRecordCount = allRecordCount; } @Override protected SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean) { int start = params.getStartPosition(); int size = params.getPageSize();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 25.6K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
final LocalCache<K, V> localCache; LocalManualCache(CacheBuilder<? super K, ? super V> builder) { this(builder, null); } protected LocalManualCache( CacheBuilder<? super K, ? super V> builder, CacheLoader<? super K, V> loader) { this.localCache = new LocalCache<K, V>(builder, loader); } // Cache methods
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 27 19:19:19 UTC 2024 - 21.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloserTest.java
/** * Tests for {@link Closer}. * * @author Colin Decker */ public class CloserTest extends TestCase { private TestSuppressor suppressor; @Override protected void setUp() throws Exception { suppressor = new TestSuppressor(); } public void testNoExceptionsThrown() throws IOException { Closer closer = new Closer(suppressor);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 07 15:26:58 UTC 2024 - 11.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DenseImmutableTable.java
return new AbstractIterator<Entry<K, V>>() { private int index = -1; private final int maxIndex = keyToIndex().size(); @Override @CheckForNull protected Entry<K, V> computeNext() { for (index++; index < maxIndex; index++) { V value = getValue(index); if (value != null) { return immutableEntry(getKey(index), value);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 10.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/AbstractCache.java
* * @author Charles Fry * @since 10.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class AbstractCache<K, V> implements Cache<K, V> { /** Constructor for use by subclasses. */ protected AbstractCache() {} /** @since 11.0 */ @Override public V get(K key, Callable<? extends V> valueLoader) throws ExecutionException { throw new UnsupportedOperationException(); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 9.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
* UnsignedBytesBenchmark. TODO(cpovirk): benchmark this */ private static final ClassValue<Boolean> isValidClass = new ClassValue<Boolean>() { @Override protected Boolean computeValue(Class<?> type) { checkExceptionClassValidity(type.asSubclass(Exception.class)); return true; } }; @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:40:56 UTC 2024 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
Name questionName; Name recordName; int questionType, questionClass, recordType, recordClass, ttl, rDataLength; InetAddress addr; protected Configuration config; NameServicePacket ( Configuration config ) { this.config = config; this.isRecurDesired = true; this.isBroadcast = true; this.questionCount = 1;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
System.out.println("Ends " + ticket.getEndTime().getTime()); return ticket; } /** * @param principal * @return * @throws RealmException */ protected static PrincipalName convertPrincipal ( KerberosPrincipal principal ) throws RealmException { PrincipalName principalName = new PrincipalName(
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java
List<org.apache.maven.api.RemoteRepository> repositories) { super(session, repositorySystem, repositories, null, null, null); } @Override protected Session newSession( MavenSession mavenSession, List<org.apache.maven.api.RemoteRepository> repositories) { return new SimpleSession(mavenSession, getRepositorySystem(), repositories); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.2K bytes - Viewed (0)