- Sort Score
- Result 10 results
- Languages All
Results 1061 - 1070 of 1,544 for implemented (0.1 sec)
-
guava/src/com/google/common/collect/ImmutableMapEntrySet.java
throw new InvalidObjectException("Use EntrySetSerializedForm"); } @GwtIncompatible // serialization @J2ktIncompatible private static class EntrySetSerializedForm<K, V> implements Serializable { final ImmutableMap<K, V> map; EntrySetSerializedForm(ImmutableMap<K, V> map) { this.map = map; } Object readResolve() { return map.entrySet(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 4.1K bytes - Viewed (0) -
docs/pt/docs/advanced/security/oauth2-scopes.md
O mais comum é o fluxo implícito. O mais seguro é o fluxo de código, mas ele é mais complexo para implementar, pois ele necessita mais passos. Como ele é mais complexo, muitos provedores terminam sugerindo o fluxo implícito. /// note | "Nota"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 21.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.util.Map; public class QueryResponseList implements List<Map<String, Object>> { protected final List<Map<String, Object>> parent; protected final int start; protected final int offset; /** The value of current page number. */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.codelibs.fess.es.user.exentity.User; import org.codelibs.fess.exception.CommandExecutionException; public class CommandChain implements AuthenticationChain { private static final Logger logger = LogManager.getLogger(CommandChain.class); protected File workingDirectory = null; protected int maxOutputLine = 1000;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/JAASAuthenticator.java
* See {@link jcifs.Configuration#isDfsConvertToFQDN()} for a workaround. * * @author mbechler */ public class JAASAuthenticator extends Kerb5Authenticator implements CallbackHandler, SmbRenewableCredentials { private static final Logger log = LoggerFactory.getLogger(JAASAuthenticator.class); /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Shorts.java
public static short fromBytes(byte b1, byte b2) { return (short) ((b1 << 8) | (b2 & 0xFF)); } private static final class ShortConverter extends Converter<String, Short> implements Serializable { static final Converter<String, Short> INSTANCE = new ShortConverter(); @Override protected Short doForward(String value) { return Short.decode(value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Shorts.java
public static short fromBytes(byte b1, byte b2) { return (short) ((b1 << 8) | (b2 & 0xFF)); } private static final class ShortConverter extends Converter<String, Short> implements Serializable { static final Converter<String, Short> INSTANCE = new ShortConverter(); @Override protected Short doForward(String value) { return Short.decode(value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 25.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java
return using(generator); } static class DescendingTestMapGenerator<K, V> extends ForwardingTestMapGenerator<K, V> implements TestSortedMapGenerator<K, V> { DescendingTestMapGenerator(TestSortedMapGenerator<K, V> delegate) { super(delegate); } @Override public NavigableMap<K, V> create(Object... entries) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java
* * @author Jared Levy */ @GwtCompatible @ElementTypesAreNonnullByDefault abstract class AbstractSortedSetMultimap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractSetMultimap<K, V> implements SortedSetMultimap<K, V> { /** * Creates a new multimap that uses the provided map. * * @param map place to store the mapping from each key to its corresponding values */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FilteredKeyMultimap.java
* * @author Louis Wasserman */ @GwtCompatible @ElementTypesAreNonnullByDefault class FilteredKeyMultimap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMultimap<K, V> implements FilteredMultimap<K, V> { final Multimap<K, V> unfiltered; final Predicate<? super K> keyPredicate; FilteredKeyMultimap(Multimap<K, V> unfiltered, Predicate<? super K> keyPredicate) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.1K bytes - Viewed (0)