- Sort Score
- Result 10 results
- Languages All
Results 1341 - 1350 of 3,501 for final (0.05 sec)
-
src/main/java/org/codelibs/core/io/WriterUtil.java
* @return ストリームへ出力する{@link Writer} */ public static Writer create(final OutputStream os, final String encoding) { assertArgumentNotNull("os", os); assertArgumentNotEmpty("encoding", encoding); try { return new OutputStreamWriter(os, encoding); } catch (final IOException e) { throw new IORuntimeException(e); } } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SAXParserFactoryUtil.java
*/ public static SAXParser newSAXParser(final SAXParserFactory factory) { assertArgumentNotNull("factory", factory); try { return factory.newSAXParser(); } catch (final ParserConfigurationException e) { throw new ParserConfigurationRuntimeException(e); } catch (final SAXException e) { throw new SAXRuntimeException(e); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/SessionServicePacket.java
// session service packet types static final int SESSION_MESSAGE = 0x00; static final int SESSION_REQUEST = 0x81; public static final int POSITIVE_SESSION_RESPONSE = 0x82; public static final int NEGATIVE_SESSION_RESPONSE = 0x83; static final int SESSION_RETARGET_RESPONSE = 0x84; static final int SESSION_KEEP_ALIVE = 0x85; static final int MAX_MESSAGE_SIZE = 0x0001FFFF;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Equivalence.java
* * @since 10.0 */ public final Predicate<@Nullable T> equivalentTo(@CheckForNull T target) { return new EquivalentToPredicate<>(this, target); } private static final class EquivalentToPredicate<T> implements Predicate<@Nullable T>, Serializable { private final Equivalence<T> equivalence; @CheckForNull private final T target;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu May 16 14:34:47 UTC 2024 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProvider.java
*/ public class FessSecurityResourceProvider implements SecurityResourceProvider { protected final InvertibleCryptographer primaryInvertibleCryptographer; protected final OneWayCryptographer primaryOneWayCryptographer; public FessSecurityResourceProvider(final InvertibleCryptographer primaryInvertibleCryptographer, final OneWayCryptographer primaryOneWayCryptographer) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
* */ public class SmbAuthenticationHolder { private final Map<String, SmbAuthentication> authMap = new HashMap<>(); public void add(final SmbAuthentication auth) { authMap.put(auth.getPathPrefix(), auth); } public SmbAuthentication get(final String path) { if (path == null) { return null; } for (final Map.Entry<String, SmbAuthentication> entry : authMap.entrySet()) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipInputStreamUtil.java
private static final Logger logger = Logger.getLogger(ZipInputStreamUtil.class); /** * {@link ZipInputStream#getNextEntry()}の例外処理をラップするメソッドです。 * * @param zis * {@link ZipInputStream}。{@literal null}であってはいけません * @return {@link ZipEntry} * @see ZipInputStream#getNextEntry() */ public static ZipEntry getNextEntry(final ZipInputStream zis) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultType.java
*/ @Deprecated(since = "4.0.0") public class DefaultType implements Type, ArtifactType { private final String id; private final Language language; private final String extension; private final String classifier; private final boolean includesDependencies; private final Set<PathType> pathTypes; private final Map<String, String> properties; public DefaultType( String id,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractIndexedListIterator.java
} @Override public final boolean hasNext() { return position < size; } @Override @ParametricNullness public final E next() { if (!hasNext()) { throw new NoSuchElementException(); } return get(position++); } @Override public final int nextIndex() { return position; } @Override public final boolean hasPrevious() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 09 17:31:04 UTC 2021 - 3.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/AbstractFutureFootprintBenchmark.java
CANCELLED, FAILED } @Param State state; @Param Impl impl; @Param({"0", "1", "5", "10"}) int numListeners; @Param({"0", "1", "5", "10"}) int numThreads; private final Set<Thread> blockedThreads = new HashSet<>(); @BeforeExperiment void setUp() throws Exception { if (state != State.NOT_DONE && (numListeners != 0 || numThreads != 0)) { throw new SkipThisScenarioException();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 2.9K bytes - Viewed (0)