Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 1,875 for isobject (0.06 sec)

  1. InterceptorTest.kt

    Exception) { L887: exceptions.add(e) L888: } L889: } L890: } L891: L892: fun takeException(): Exception { L893: return exceptions.take() L894: } L895: } L896: L897: companion object { L898: fun uppercase(original: ResponseBody): ResponseBody { L899: return object : ResponseBody() { L900: override fun contentType() = original.contentType() L901: L902: override fun contentLength() = original.contentLength() L903: L904: override fun source() =...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Sun Jan 14 10:20:09 UTC 2024
      27.8K bytes
  2. BsFileConfigCQ.java

    setAvailable_GreaterThan(Boolean available) { L288: setAvailable_GreaterThan(available, null); L289: } L290: L291: public void setAvailable_GreaterThan(Boolean available, ConditionOptionCall<RangeQueryBuilder> opLambda) { L292: final Object _value = available; L293: RangeQueryBuilder builder = regRangeQ("available", ConditionKey.CK_GREATER_THAN, _value); L294: if (opLambda != null) { L295: opLambda.callback(builder); L296: } L297: } L298: L299: public...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      165.3K bytes
  3. Network.java

    * L493: * <p>A reference implementation of this is provided by {@link AbstractNetwork#equals(Object)}. L494: */ L495: @Override L496: boolean equals(@CheckForNull Object object); L497: L498: /** L499: * Returns the hash code for this network. The hash code of a network is defined as the hash code L500: * of a map from each of its {@link #edges() edges} to their {@link #incidentNodes(Object) L501: * incident nodes}. L502: * L503: * <p>A reference implementation of this is provided...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 10 15:41:27 UTC 2024
      21.1K bytes
  4. FeatureUtil.java

    L247: } L248: L249: /** L250: * Incorporate additional requirements into an existing requirements object. L251: * L252: * @param requirements the existing requirements object L253: * @param moreRequirements more requirements to incorporate L254: * @param source the source of the additional requirements (used only for error reporting) L255: * @return the existing requirements object, modified to include the additional requirements L256: * @throws ConflictingRequirementsException if...
    github.com/google/guava/android/guava-testlib/s...
    Sat Oct 05 22:05:05 UTC 2024
      12.2K bytes
  5. FuturesGetChecked.java

    @ParametricNullness L48: static <V extends @Nullable Object, X extends Exception> V getChecked( L49: Future<V> future, Class<X> exceptionClass) throws X { L50: return getChecked(bestGetCheckedTypeValidator(), future, exceptionClass); L51: } L52: L53: /** Implementation of {@link Futures#getChecked(Future, Class)}. */ L54: @CanIgnoreReturnValue L55: @VisibleForTesting L56: @ParametricNullness L57: static <V extends @Nullable Object, X extends Exception> V getChecked( L58: GetCheckedTypeValidator...
    github.com/google/guava/guava/src/com/google/co...
    Thu Feb 22 17:40:56 UTC 2024
      11.9K bytes
  6. Graph.java

    ElementOrder<N> nodeOrder(); L143: L144: /** L145: * Returns an {@link ElementOrder} that specifies the order of iteration for the elements of L146: * {@link #edges()}, {@link #adjacentNodes(Object)}, {@link #predecessors(Object)}, {@link L147: * #successors(Object)} and {@link #incidentEdges(Object)}. L148: * L149: * @since 29.0 L150: */ L151: @Override L152: ElementOrder<N> incidentEdgeOrder(); L153: L154: // L155: // Element-level accessors L156: // L157: L158: /** L159: * Returns...
    github.com/google/guava/android/guava/src/com/g...
    Thu Oct 10 15:41:27 UTC 2024
      13.7K bytes
  7. Graph.java

    ElementOrder<N> nodeOrder(); L143: L144: /** L145: * Returns an {@link ElementOrder} that specifies the order of iteration for the elements of L146: * {@link #edges()}, {@link #adjacentNodes(Object)}, {@link #predecessors(Object)}, {@link L147: * #successors(Object)} and {@link #incidentEdges(Object)}. L148: * L149: * @since 29.0 L150: */ L151: @Override L152: ElementOrder<N> incidentEdgeOrder(); L153: L154: // L155: // Element-level accessors L156: // L157: L158: /** L159: * Returns...
    github.com/google/guava/guava/src/com/google/co...
    Thu Oct 10 15:41:27 UTC 2024
      13.7K bytes
  8. Invokable.java

    AnnotatedType getAnnotatedReturnType(); L362: L363: static class MethodInvokable<T> extends Invokable<T, Object> { L364: L365: final Method method; L366: L367: MethodInvokable(Method method) { L368: super(method); L369: this.method = method; L370: } L371: L372: @Override L373: @CheckForNull L374: final Object invokeInternal(@CheckForNull Object receiver, @Nullable Object[] args) L375: throws InvocationTargetException, IllegalAccessException { L376: return met...
    github.com/google/guava/guava/src/com/google/co...
    Thu Dec 14 20:35:03 UTC 2023
      19.6K bytes
  9. DescendingMultiset.java

    L143: public Iterator<E> iterator() { L144: return Multisets.iteratorImpl(this); L145: } L146: L147: @Override L148: public @Nullable Object[] toArray() { L149: return standardToArray(); L150: } L151: L152: @Override L153: @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations L154: public <T extends @Nullable Object> T[] toArray(T[] array) { L155: return standardToArray(array); L156: } L157: L158: @Override L159: public String toString() { L160:...
    github.com/google/guava/guava-gwt/src-super/com...
    Wed Jan 24 16:03:45 UTC 2024
      4.2K bytes
  10. FileConfigDbm.java

    public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { L375: } L376: L377: @Override L378: public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { L379: } L380: L381: @Override L382: public Map<String, Object> extractPrimaryKeyMap(Entity entity) { L383: return null; L384: } L385: L386: @Override L387: public Map<String, Object> extractAllColumnMap(Entity entity) { L388: return null; L389:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      18K bytes
Back to top