Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 210 of 348 for lett (0.31 seconds)

  1. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

                // If this CAS succeeds, we know that the provided callable will never be invoked,
                // so when oldFuture completes it is safe to allow the next submitted task to
                // proceed. Doing this immediately here lets the next task run without waiting for
                // the cancelled task's executor to run the noop AsyncCallable.
                //
                // ---
                //
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 01:35:55 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static void assertSubtypeTokenBeforeSupertypeToken(
          Iterable<? extends TypeToken<?>> types) {
        int i = 0;
        for (TypeToken<?> left : types) {
          int j = 0;
          for (TypeToken<?> right : types) {
            if (left.isSupertypeOf(right)) {
              assertTrue(left + " should be after " + right, i >= j);
            }
            j++;
          }
          i++;
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 89.3K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * <ol>
       *   <li>The state of the RateLimiter (storedPermits) is a vertical line in this figure.
       *   <li>When the RateLimiter is not used, this goes right (up to maxPermits)
       *   <li>When the RateLimiter is used, this goes left (down to zero), since if we have
       *       storedPermits, we serve from those first
       *   <li>When _unused_, we go right at a constant rate! The rate at which we move to the right is
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed May 14 19:40:47 GMT 2025
    - 19.3K bytes
    - Click Count (0)
  4. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

      id("com.android.lint")
      id("com.diffplug.spotless")
    }
    
    val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
    
    fun library(alias: String) = libs.findLibrary(alias).get().get().let {
      "${it.module.group}:${it.module.name}:${it.versionConstraint.requiredVersion}"
    }
    fun version(alias: String) = libs.findVersion(alias).get().toString()
    
    tasks.withType<Checkstyle>().configureEach {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/util/concurrent/Partially.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Outer class that exists solely to let us write {@code Partially.GwtIncompatible} instead of plain
     * {@code GwtIncompatible}. This is more accurate for {@link Futures#catching}, which is available
     * under GWT but with a slightly different signature.
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 03:10:51 GMT 2024
    - 1.9K bytes
    - Click Count (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

      @Test
      fun aggregateEventListenerIsComplete() {
        val sampleValues = sampleValuesMap()
    
        val solo = EventRecorder(enforceOrder = false)
        val left = EventRecorder(enforceOrder = false)
        val right = EventRecorder(enforceOrder = false)
        val composite = left.eventListener + right.eventListener
    
        for (method in EventListener::class.java.declaredMethods) {
          if (method.name == "plus") continue
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 70.7K bytes
    - Click Count (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/internal/MockWebServerSocket.kt

          }
    
      val handshake: Handshake?
        get() = (javaNetSocket as? SSLSocket)?.session?.handshake()
    
      val handshakeServerNames: List<String>
        get() =
          (javaNetSocket as? SSLSocket)
            ?.let { Platform.Companion.get().getHandshakeServerNames(it) }
            ?: listOf()
    
      fun shutdownInput() {
        javaNetSocket.shutdownInput()
      }
    
      fun shutdownOutput() {
        javaNetSocket.shutdownOutput()
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Jul 31 04:18:40 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                                value="<la:message key="labels.crawling_info_button_back" />">
                                            <i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
                                            <la:message key="labels.crawling_info_button_back"/>
                                        </button>
                                        <c:if test="${editable}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  9. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

            private val objectMapper = ObjectMapper()
    
            fun fromJson(jsonObject: Map<String, Any>): ParallelizationMethod {
                val methodJsonNode =
                    (jsonObject["parallelizationMethod"] as? Map<*, *>)?.let { objectMapper.valueToTree<JsonNode>(it) }
                        ?: return None
    
                return when (methodJsonNode.get("name")?.asText()) {
                    null -> None
                    None::class.simpleName -> None
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 09 05:26:45 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp

                                            value="<la:message key="labels.joblog_button_back" />">
                                        <i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
                                        <la:message key="labels.joblog_button_back"/>
                                    </button>
                                    <c:if test="${editable}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top