Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isIntermediate (0.05 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

                    if (log.isDebugEnabled()) {
                        log.debug("Have intermediate reply " + response);
                    }
    
                    if (first) {
                        final int credit = resp.getCredit();
                        if (log.isDebugEnabled()) {
                            log.debug("Credit from intermediate " + credit);
                        }
                        this.credits.release(credit);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

       * array whose contents are initially non-null. The {@code @Nullable} annotation indicates that
       * this method will write nulls into the array during iteration.
       *
       * <p>This is mainly just to avoid the intermediate ArrayDeque in ConsumingQueueIterator.
       */
      private static <I extends Iterator<?>> Iterator<I> consumingForArray(@Nullable I... elements) {
        return new UnmodifiableIterator<I>() {
          int index = 0;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
Back to top