Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for notice (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                this.n = n;
                this.dest = dest;
                this.off = off;
                ready = false;
                notify();
            }
    
            public void run() {
                synchronized( this ) {
                    try {
                        for( ;; ) {
                            notify();
                            ready = true;
                            while( ready ) {
                                wait();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. guava/src/com/google/common/cache/LocalCache.java

          return false;
        }
      }
    
      // Queues
    
      /**
       * A custom queue for managing eviction order. Note that this is tightly integrated with {@code
       * ReferenceEntry}, upon which it relies to perform its linking.
       *
       * <p>Note that this entire implementation makes the assumption that all elements which are in the
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          return this;
        }
      }
    
      // Queues
    
      /**
       * A custom queue for managing eviction order. Note that this is tightly integrated with {@code
       * ReferenceEntry}, upon which it relies to perform its linking.
       *
       * <p>Note that this entire implementation makes the assumption that all elements which are in the
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
Back to top