Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,942 for lost (0.02 sec)

  1. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

          limiter.acquire(); // #1
        }
        stopwatch.sleepMillis(500); // #2: to repay for the last acquire
        stopwatch.sleepMillis(4000); // #3: becomes cold again
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // // #4
        }
        stopwatch.sleepMillis(500); // #5: to repay for the last acquire
        stopwatch.sleepMillis(2000); // #6: didn't get cold! It would take another 2 seconds to go cold
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  2. docs/en/docs/fastapi-people.md

    ///
    
    You can see the **FastAPI Experts** for:
    
    * [Last Month](#fastapi-experts-last-month) 🤓
    * [3 Months](#fastapi-experts-3-months) 😎
    * [6 Months](#fastapi-experts-6-months) 🧐
    * [1 Year](#fastapi-experts-1-year) 🧑‍🔬
    * [**All Time**](#fastapi-experts-all-time) 🧙
    
    ### FastAPI Experts - Last Month
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Jan 28 20:34:56 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

            return relatedQueryMap.size();
        }
    
        /**
         * Extracts the virtual host key from a RelatedQuery entity.
         * If the virtual host is blank or null, returns an empty string.
         *
         * @param entity the RelatedQuery entity to extract the host key from
         * @return the virtual host key, or empty string if blank or null
         */
        protected String getHostKey(final RelatedQuery entity) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            if (shr != null) {
                this.dfsReferral = context.getDfsReferral();
            }
            final int last = name.length() - 1;
            boolean trailingSlash = false;
            if (last >= 0 && name.charAt(last) == '/') {
                trailingSlash = true;
                name = name.substring(0, last);
            }
    
            if (shr == null) {
                final String[] nameParts = name.split("/");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeConnection.java

                } catch (final SmbException e) {
                    log.debug("Failed to connect tree on retry", e);
                    last = e;
                }
            }
    
            if (last != null) {
                log.debug("All attempts have failed, last exception", last);
                throw last;
            }
            throw new SmbException("All attempts failed, but no exception");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java

        }
    
        // Mock classes
    
        static class MockRelatedQueryBhv extends RelatedQueryBhv {
            private List<RelatedQuery> testData = new ArrayList<>();
    
            public void setTestData(List<RelatedQuery> testData) {
                this.testData = testData;
            }
    
            public List<RelatedQuery> getTestData() {
                return testData;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                                    }
    
                                    last = next;
                                }
                            }
    
                            if (last != null) {
                                logger.debug(String.valueOf(last));
                            }
                        }
                    }
    
                    interpolator.clearFeedback();
                } finally {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashMap.java

          // linked list starting from `newTable`. In general, each element from the old linked list
          // belongs to a different linked list from `newTable`. We insert each element in turn at the
          // head of its appropriate `newTable` linked list.
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt

      fun check(
        hostname: String,
        peerCertificates: List<Certificate>,
      ) = check(hostname) {
        (certificateChainCleaner?.clean(peerCertificates, hostname) ?: peerCertificates)
          .map { it as X509Certificate }
      }
    
      internal fun check(
        hostname: String,
        cleanedPeerCertificatesFn: () -> List<X509Certificate>,
      ) {
        val pins = findMatchingPins(hostname)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java

            super();
        }
    
        /**
         * The unique identifier of the duplicate host configuration being edited.
         * This is a required field for identifying which duplicate host entry to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this duplicate host configuration.
         * Used for audit trail purposes to track who made changes.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top