Search Options

Results per page
Sort
Preferred Languages
Advance

Results 521 - 530 of 1,875 for isobject (0.04 sec)

  1. testmail.dfmail

    L1:/* L2: [Test Mail] L3:*/ L4:subject: [FESS] Test Mail: /*pmb.hostname:orElse('Unknown')*/ L5:>>> L6:This is a test mail from /*pmb.hostname:orElse('Unknown')*/...
    github.com/codelibs/fess/src/main/resources/mai...
    Fri Feb 12 13:52:58 UTC 2016
      146 bytes
  2. UserInfoHelper.java

    storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) { L173: LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).ifPresent(session -> { L174: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L175: L176: final List<String> docIdList = new ArrayList<>(); L177: for (final Map<String, Object> map : documentItems) { L178: final Object docId = map.get(fessConfig.getIndexFieldDocId()); L179: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.5K bytes
  3. TransformedListIterator.java

    e; L23: L24:/** L25: * An iterator that transforms a backing list iterator; for internal use. This avoids the object L26: * overhead of constructing a {@link Function} for internal methods. L27: * L28: * @author Louis Wasserman L29: */ L30:@GwtCompatible L31:@ElementTypesAreNonnullByDefault L32:abstract class TransformedListIterator<F extends @Nullable Object, T extends @Nullable Object> L33: extends TransformedIterator<F, T> implements ListIterator<T> { L34: TransformedListIterator(ListIterator<?...
    github.com/google/guava/android/guava/src/com/g...
    Tue Nov 21 21:43:01 UTC 2023
      2.1K bytes
  4. TransformedListIterator.java

    e; L23: L24:/** L25: * An iterator that transforms a backing list iterator; for internal use. This avoids the object L26: * overhead of constructing a {@link Function} for internal methods. L27: * L28: * @author Louis Wasserman L29: */ L30:@GwtCompatible L31:@ElementTypesAreNonnullByDefault L32:abstract class TransformedListIterator<F extends @Nullable Object, T extends @Nullable Object> L33: extends TransformedIterator<F, T> implements ListIterator<T> { L34: TransformedListIterator(ListIterator<?...
    github.com/google/guava/guava/src/com/google/co...
    Tue Nov 21 21:43:01 UTC 2023
      2.1K bytes
  5. AbstractInvocationHandler.java

    .checker.nullness.qual.Nullable; L23: L24:/** L25: * Abstract implementation of {@link InvocationHandler} that handles {@link Object#equals}, {@link L26: * Object#hashCode} and {@link Object#toString}. For example: L27: * L28: * <pre> L29: * class Unsupported extends AbstractInvocationHandler { L30: * protected Object handleInvocation(Object proxy, Method method, Object[] args) { L31: * throw new UnsupportedOperationException(); L32: * } L33: * } L34: * L35: * CharSequence unsupported = ...
    github.com/google/guava/guava/src/com/google/co...
    Wed Jan 05 17:43:40 UTC 2022
      5.2K bytes
  6. BsBoostDocumentRule.java

    Source L78: // ====== L79: @Override L80: public Map<String, Object> toSource() { L81: Map<String, Object> sourceMap = new HashMap<>(); L82: if (boostExpr != null) { L83: addFieldToSource(sourceMap, "boostExpr", boostExpr); L84: } L85: if (createdBy != null) { L86: addFieldToSource(sourceMap,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.7K bytes
  7. BsRoleType.java

    Source L78: // ====== L79: @Override L80: public Map<String, Object> toSource() { L81: Map<String, Object> sourceMap = new HashMap<>(); L82: if (createdBy != null) { L83: addFieldToSource(sourceMap, "createdBy", createdBy); L84: } L85: if (createdTime != null) { L86: addFieldToSource(sourceMap,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.5K bytes
  8. ThreadInterruptTest.kt

    some platforms can have large buffers that mean writes do not block when L55: // required. These socket factories explicitly set the buffer sizes on sockets created. L56: server = MockWebServer() L57: server.serverSocketFactory = L58: object : DelegatingServerSocketFactory(getDefault()) { L59: @Throws(SocketException::class) L60: override fun configureServerSocket(serverSocket: ServerSocket): ServerSocket { L61: serverSocket.setReceiveBufferSize(SOCKET_BUFFER_SIZE)...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Mon Jan 08 01:13:22 UTC 2024
      4.6K bytes
  9. SubscriberRegistry.java

    this registry belongs to. */ L67: @Weak private final EventBus bus; L68: L69: SubscriberRegistry(EventBus bus) { L70: this.bus = checkNotNull(bus); L71: } L72: L73: /** Registers all subscriber methods on the given listener object. */ L74: void register(Object listener) { L75: Multimap<Class<?>, Subscriber> listenerMethods = findAllSubscribers(listener); L76: L77: for (Entry<Class<?>, Collection<Subscriber>> entry : listenerMethods.asMap().entrySet()) { L78: Class<?> eventType...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 17 15:16:45 UTC 2024
      10.8K bytes
  10. MinMaxPriorityQueue.java

    size; i++) { L919: queue[i] = null; L920: } L921: size = 0; L922: } L923: L924: @Override L925: @J2ktIncompatible // Incompatible return type change. Use inherited (unoptimized) implementation L926: public Object[] toArray() { L927: Object[] copyTo = new Object[size]; L928: arraycopy(queue, 0, copyTo, 0, size); L929: return copyTo; L930: } L931: L932: /** L933: * Returns the comparator used to order the elements in this queue. Obeys the general contract of L934: * {@link...
    github.com/google/guava/guava/src/com/google/co...
    Wed Oct 30 16:15:19 UTC 2024
      34.1K bytes
Back to top