- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 1,542 for implement (0.51 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProvider.java
import org.lastaflute.db.dbflute.exception.ProvidedClassificationNotFoundException; /** * The provider of listed classification. * * @author jflute */ public class FessListedClassificationProvider implements ListedClassificationProvider { @Override public ClassificationMeta provide(final String classificationName) throws ProvidedClassificationNotFoundException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PreemptiveAuth.java
System.out.println(response.body().string()); } } public static void main(String... args) throws Exception { new PreemptiveAuth().run(); } static final class BasicAuthInterceptor implements Interceptor { private final String credentials; private final String host; BasicAuthInterceptor(String host, String username, String password) { this.credentials = Credentials.basic(username, password);
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Nov 05 07:46:46 UTC 2018 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableMapKeySet.java
@J2ktIncompatible @GwtIncompatible Object writeReplace() { return new KeySetSerializedForm<K>(map); } @GwtIncompatible @J2ktIncompatible private static final class KeySetSerializedForm<K> implements Serializable { final ImmutableMap<K, ?> map; KeySetSerializedForm(ImmutableMap<K, ?> map) { this.map = map; } Object readResolve() { return map.keySet(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 2.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestStringSortedSetGenerator.java
* * @author Jared Levy */ @GwtCompatible @NullMarked public abstract class TestStringSortedSetGenerator extends TestStringSetGenerator implements TestSortedSetGenerator<String> { @Override public SortedSet<String> create(Object... elements) { return (SortedSet<String>) super.create(elements); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 11 19:03:19 UTC 2025 - 2K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapEntry.java
* Entry}. * * @author Jared Levy */ @GwtCompatible abstract class AbstractMapEntry<K extends @Nullable Object, V extends @Nullable Object> implements Entry<K, V> { @Override @ParametricNullness public abstract K getKey(); @Override @ParametricNullness public abstract V getValue(); @Override @ParametricNullness
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenDomain.java
*/ package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.dcerpc.rpc; /** * MS-RPC SAMR open domain operation. * * This class implements the SAMR OpenDomain operation for obtaining * a handle to a specific domain in the Security Account Manager. */ public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/logging/AccumulatingLogger.java
* Early CLI {@link Logger} that simply accumulates log entries until some point a real logger can emit them. This * logger is created at start, and it exists while no logging is available yet. */ public class AccumulatingLogger implements Logger { private final AtomicReference<List<Entry>> entries = new AtomicReference<>(new CopyOnWriteArrayList<>()); @Override public void log(Level level, String message, Throwable error) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheLoaderTest.java
/** * Unit tests for {@link CacheLoader}. * * @author Charles Fry */ @NullUnmarked public class CacheLoaderTest extends TestCase { private static class QueuingExecutor implements Executor { private final Deque<Runnable> tasks = new ArrayDeque<>(); @Override public void execute(Runnable task) { tasks.add(task); } private void runNext() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
import jcifs.SmbConstants; import jcifs.smb.FileEntry; import jcifs.util.Hexdump; /** * Internal use only * * * <p>This class is intended for internal use.</p> */ public class SmbShareInfo implements FileEntry { /** * The network name of the share. */ protected String netName; /** * The type of the share (e.g., disk, printer, IPC). */ protected int type; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
import org.apache.maven.artifact.ArtifactScopeEnum; /** * default implementation of the metadata classpath transformer * * */ @Named @Singleton @Deprecated public class DefaultClasspathTransformation implements ClasspathTransformation { @Inject GraphConflictResolver conflictResolver; // ---------------------------------------------------------------------------------------------------- @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.1K bytes - Viewed (0)