Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Goff (0.17 sec)

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

                    int off = SMB1_HEADER_LENGTH;
                    /* WordCount thru dataOffset always 27 */
                    readn(this.in, buffer, 4 + off, 27);
                    off += 27;
                    resp.decode(buffer, 4);
                    /* EMC can send pad w/o data */
                    int pad = r.getDataOffset() - off;
                    if ( r.getByteCount() > 0 && pad > 0 && pad < 4 )
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                    sids[ ai ] = aces[ ai ].getSID();
                }
    
                for ( int off = 0; off < sids.length; off += 64 ) {
                    int len = sids.length - off;
                    if ( len > 64 )
                        len = 64;
    
                    getContext().getSIDResolver().resolveSids(getContext(), server, sids, off, len);
                }
            }
            else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

       * has elapsed after the entry's creation, or the most recent replacement of its value.
       *
       * <p>When {@code duration} is zero, this method hands off to {@link #maximumSize(long)
       * maximumSize}{@code (0)}, ignoring any otherwise-specified maximum size or weight. This can be
       * useful in testing, or to disable caching temporarily without a code change.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

       * CharMatcher.is('a').replaceFrom("yaha", "oo")
       * }</pre>
       *
       * ... returns {@code "yoohoo"}.
       *
       * <p><b>Note:</b> If the replacement is a fixed string with only one character, you are better
       * off calling {@link #replaceFrom(CharSequence, char)} directly.
       *
       * @param sequence the character sequence to replace matching characters in
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

       * CharMatcher.is('a').replaceFrom("yaha", "oo")
       * }</pre>
       *
       * ... returns {@code "yoohoo"}.
       *
       * <p><b>Note:</b> If the replacement is a fixed string with only one character, you are better
       * off calling {@link #replaceFrom(CharSequence, char)} directly.
       *
       * @param sequence the character sequence to replace matching characters in
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

                  }
                  i++;
                  /*
                   * The cast is safe because of the containsKey check in hasNext(). (That means it's
                   * unsafe under concurrent modification, but all bets are off then, anyway.)
                   */
                  return uncheckedCastNullableTToT(map.get(key));
                }
    
                @Override
                public void remove() {
                  checkRemove(i == 1);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 86.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbSessionImpl.java

                        log.debug("Logging off session on " + trans);
                    }
    
                    this.netbiosName = null;
    
                    synchronized ( this.trees ) {
                        long us = this.usageCount.get();
                        if ( ( inUse && us != 1 ) || ( !inUse && us > 0 ) ) {
                            log.warn("Logging off session while still in use " + this + ":" + this.trees);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      //   have observed 12 micros on 64-bit linux systems to wake up a parked thread). So if the
      //   timeout is small we shouldn't park(). This needs to be traded off with the cpu overhead of
      //   spinning, so we use SPIN_THRESHOLD_NANOS which is what AbstractQueuedSynchronizer uses for
      //   similar purposes.
      // * We want to behave reasonably for timeouts of 0
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
Back to top