- Sort Score
- Result 10 results
- Languages All
Results 1601 - 1610 of 3,413 for authFn (0.04 sec)
-
android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java
import java.util.Collections; import java.util.List; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestResult; /** * @author Max Ross */ public class FeatureSpecificTestSuiteBuilderTest extends TestCase { private static final class MyTestSuiteBuilder extends FeatureSpecificTestSuiteBuilder<MyTestSuiteBuilder, String> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 20:09:59 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exbhv/FavoriteLogBhv.java
import org.apache.logging.log4j.Logger; import org.codelibs.fess.es.log.bsbhv.BsFavoriteLogBhv; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class FavoriteLogBhv extends BsFavoriteLogBhv { private static final Logger logger = LogManager.getLogger(FavoriteLogBhv.class); private String indexName = null; @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exbhv/UserInfoBhv.java
import org.apache.logging.log4j.Logger; import org.codelibs.fess.es.log.bsbhv.BsUserInfoBhv; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class UserInfoBhv extends BsUserInfoBhv { private static final Logger logger = LogManager.getLogger(UserInfoBhv.class); private String indexName = null; @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.1K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java
*/ package com.google.common.base; import jsinterop.annotations.JsMethod; import jsinterop.annotations.JsPackage; import org.checkerframework.checker.nullness.qual.Nullable; /** @author Jesse Wilson */ final class Platform { static CharMatcher precomputeCharMatcher(CharMatcher matcher) { // CharMatcher.precomputed() produces CharMatchers that are maybe a little
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 27 13:56:56 UTC 2024 - 2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/ListCreationTester.java
* A generic JUnit test which tests creation (typically through a constructor or static factory * method) of a list. Can't be invoked directly; please see {@link * com.google.common.collect.testing.ListTestSuiteBuilder}. * * @author Chris Povirk */ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractSortedKeySortedSetMultimap.java
* * <p>This superclass allows {@code TreeMultimap} to override methods to return navigable set and * map types in non-GWT only, while GWT code will inherit the SortedMap/SortedSet overrides. * * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault abstract class AbstractSortedKeySortedSetMultimap< K extends @Nullable Object, V extends @Nullable Object>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 21:08:00 UTC 2021 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/OutputStreamUtil.java
import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import org.codelibs.core.exception.IORuntimeException; /** * {@link OutputStream}用のユーティリティクラスです。 * * @author shot */ public abstract class OutputStreamUtil { /** * {@link FileOutputStream}を作成します。 * * @param file * ファイル。{@literal null}であってはいけません
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/IteratorEnumeration.java
import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.util.Enumeration; import java.util.Iterator; /** * {@link Iterator}を {@link Enumeration}にするためのアダブタです。 * * @author higa * @param <T> * 列挙する要素の型 */ public class IteratorEnumeration<T> implements Enumeration<T> { /** 反復子 */ protected final Iterator<T> iterator; /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/JdkBackedImmutableSet.java
* ImmutableSet implementation backed by a JDK HashSet, used to defend against apparent hash * flooding. This implementation is never used on the GWT client side, but it must be present there * for serialization to work. * * @author Louis Wasserman */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class JdkBackedImmutableSet<E> extends IndexedImmutableSet<E> { private final Set<?> delegate;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponse.java
*/ package jcifs.internal.smb2.ioctl; import jcifs.Decodable; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class SrvCopyChunkCopyResponse implements Decodable { private int chunksWritten; private int chunkBytesWritten; private int totalBytesWritten; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0)