Search Options

Results per page
Sort
Preferred Languages
Advance

Results 411 - 420 of 1,875 for isobject (0.07 sec)

  1. SetMultimap.java

    @author Jared Levy L52: * @since 2.0 L53: */ L54:@GwtCompatible L55:@ElementTypesAreNonnullByDefault L56:public interface SetMultimap<K extends @Nullable Object, V extends @Nullable Object> L57: extends Multimap<K, V> { L58: /** L59: * {@inheritDoc} L60: * L61: * <p>Because a {@code SetMultimap} has unique values for a given key, this method returns a L62: * {@link Set}, instead of the {@link java.util.Collection} specified in the {@link Multimap} L63: * interface. L64: */ L65: @Override...
    github.com/google/guava/guava/src/com/google/co...
    Mon Jan 24 17:47:51 UTC 2022
      4.5K bytes
  2. SpecificHostSocketFactory.kt

    the [real] address for [requested]. */ L33: operator fun set( L34: requested: InetAddress, L35: real: InetSocketAddress, L36: ) { L37: hostMapping[requested] = real L38: } L39: L40: override fun createSocket(): Socket { L41: return object : Socket() { L42: override fun connect( L43: endpoint: SocketAddress?, L44: timeout: Int, L45: ) { L46: val requested = (endpoint as InetSocketAddress) L47: val inetSocketAddress = hostMapping[requested.address]...
    github.com/square/okhttp/okhttp-testing-support...
    Mon Jan 08 01:13:22 UTC 2024
      1.7K bytes
  3. WebPlatformToAsciiData.kt

    L26: */ L27:@Serializable L28:class WebPlatformToAsciiData { L29: var input: String? = null L30: var output: String? = null L31: var comment: String? = null L32: L33: override fun toString() = "input=$input output=$output" L34: L35: companion object { L36: fun load(): List<WebPlatformToAsciiData> { L37: val path = okHttpRoot / "okhttp/src/test/resources/web-platform-test-toascii.json" L38: return SYSTEM_FILE_SYSTEM.read(path) { L39: Json.decodeFromString<List<WebPlatformT...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Wed Dec 20 23:27:07 UTC 2023
      1.4K bytes
  4. HeadersReader.kt

    readHeaders(): Headers { L36: val result = Headers.Builder() L37: while (true) { L38: val line = readLine() L39: if (line.isEmpty()) break L40: result.addLenient(line) L41: } L42: return result.build() L43: } L44: L45: companion object { L46: private const val HEADER_LIMIT = 256 * 1024 L47: } L48:}...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Wed Dec 20 23:27:07 UTC 2023
      1.4K bytes
  5. DocBoostMatcher.java

    = rule.getBoostExpr(); L39: scriptType = ComponentUtil.getFessConfig().getCrawlerDefaultScript(); L40: } L41: L42: public boolean match(final Map<String, Object> map) { L43: L44: if (map == null || map.isEmpty() || matchExpression == null) { L45: return false; L46: } L47: L48: final Object value = ComponentUtil.getScriptEngineFactory().getScriptEngine(scriptType).evaluate(matchExpression, map); L49: if (value instanceof Boolean) { L50: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2.8K bytes
  6. SystemInfoTests.java

    ITEM_ENDPOINT_SUFFIX; L64: } L65: L66: @Override L67: protected Map<String, Object> createTestParam(int id) { L68: fail(); // Unreachable L69: return null; L70: } L71: L72: @Override L73: protected Map<String, Object> getUpdateMap() { L74: fail(); // Unreachable L75: return null; L76: } L77: L78: @Override L79: protected void testRead() { L80: final Map<String, Object> searchBody = new HashMap<>(); L81: String response = checkGetMethod(searchBody,...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2.8K bytes
  7. FilteredKeySetMultimap.java

    Implementation of {@link Multimaps#filterKeys(SetMultimap, Predicate)}. L28: * L29: * @author Louis Wasserman L30: */ L31:@GwtCompatible L32:@ElementTypesAreNonnullByDefault L33:final class FilteredKeySetMultimap<K extends @Nullable Object, V extends @Nullable Object> L34: extends FilteredKeyMultimap<K, V> implements FilteredSetMultimap<K, V> { L35: L36: FilteredKeySetMultimap(SetMultimap<K, V> unfiltered, Predicate<? super K> keyPredicate) { L37: super(unfiltered, keyPredicate); L38: } L39:...
    github.com/google/guava/android/guava/src/com/g...
    Tue Jun 15 21:08:00 UTC 2021
      2.2K bytes
  8. ImmutableMultisetFloodingTest.java

    BUILDER_ADD_ENTRY_BY_ENTRY { L56: @Override L57: public ImmutableMultiset<Object> create(List<?> keys) { L58: ImmutableMultiset.Builder<Object> builder = ImmutableMultiset.builder(); L59: for (Object o : keys) { L60: builder.add(o); L61: } L62: return builder.build(); L63: } L64: }, L65: BUILDER_ADD_ALL_COLLECTION { L66: @Override L67: public ImmutableMultiset<Object> create(List<?> keys) { L68: ImmutableMultiset.Builder<Object> builder...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      2.4K bytes
  9. RegularImmutableSet.java

    ImmutableSet.CachingAsList<E> { L39: private static final Object[] EMPTY_ARRAY = new Object[0]; L40: static final RegularImmutableSet<Object> EMPTY = L41: new RegularImmutableSet<>(EMPTY_ARRAY, 0, EMPTY_ARRAY, 0); L42: L43: private final transient Object[] elements; L44: private final transient int hashCode; L45: // the same values as `elements` in hashed positions (plus nulls) L46: @VisibleForTesting final transient @Nullable Object[] table; L47: // 'and' with an int to get a valid table...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 30 16:15:19 UTC 2024
      3.9K bytes
  10. BsFileConfig.java

    Source L123: // ====== L124: @Override L125: public Map<String, Object> toSource() { L126: Map<String, Object> sourceMap = new HashMap<>(); L127: if (available != null) { L128: addFieldToSource(sourceMap, "available", available); L129: } L130: if (boost != null) { L131: addFieldToSource(sourceMap,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      13.7K bytes
Back to top