Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cacheAddressArray (1.08 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                } else {
                    entry.address = addr;
                    entry.expiration = expiration;
                }
            }
        }
    
        void cacheAddressArray(final NbtAddress[] addrs) {
            if (this.transportContext.getConfig().getNetbiosCachePolicy() == 0) {
                return;
            }
            long expiration = -1;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                } else {
                    entry.address = addr;
                    entry.expiration = expiration;
                }
            }
        }
    
        static void cacheAddressArray(final NbtAddress[] addrs) {
            if (CACHE_POLICY == 0) {
                return;
            }
            long expiration = -1;
            if (CACHE_POLICY != FOREVER) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
Back to top