Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for loadLines (1.42 sec)

  1. docs/en/docs/js/termynal.js

                || this.container.getAttribute(`${this.pfx}-cursor`) || '▋';
            this.lineData = this.lineDataToElements(options.lineData || []);
            this.loadLines()
            if (!options.noInit) this.init()
        }
    
        loadLines() {
            // Load all the lines and create the container so that the size is fixed
            // Otherwise it would be changing and the user viewport would be constantly
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:32:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

              if (!stopwatch.isRunning() && !(service instanceof NoOpService)) {
                loadTimes.add(Maps.immutableEntry(service, stopwatch.elapsed(MILLISECONDS)));
              }
            }
          } finally {
            monitor.leave();
          }
          sort(loadTimes, Ordering.natural().onResultOf(Entry::getValue));
          return ImmutableMap.copyOf(loadTimes);
        }
    
        /**
         * Updates the state with the given service transition.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DfsImpl.java

                    log.debug("Removing expired " + links.map);
                }
                roots.remove(root);
                links = null;
            }
    
            if (links == null) {
                log.trace("Loadings roots");
                final String refServerName = domain;
                dr = fetchRootReferral(tf, domain, root, refServerName);
                links = cacheRootReferral(tf, domain, root, roots, dr, links);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
Back to top