Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 348 for lett (0.01 seconds)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        return new NullFriendlyComparator<>();
      }
    
      private static final class NullFriendlyComparator<T> implements Comparator<T>, Serializable {
        @Override
        public int compare(T left, T right) {
          return String.valueOf(left).compareTo(String.valueOf(right));
        }
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Dec 16 03:23:31 GMT 2025
    - 17.3K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp

                                                value="<la:message key="labels.crud_button_back" />">
                                            <i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
                                            <la:message key="labels.crud_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
    - 11K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog_details.jsp

                                                value="<la:message key="labels.searchlog_configuration_button_back" />">
                                            <i class="fa fa-arrow-circle-left" aria-hidden="true"></i>
                                            <la:message key="labels.searchlog_configuration_button_back"/>
                                        </button>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  4. android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java

      @Param ExceptionType exceptionType;
    
      /**
       * The number of other exception types in the cache of known-good exceptions and the number of
       * other {@code ClassValue} entries for the exception type to be tested. This lets us evaluate
       * whether our solution scales to use with multiple exception types and to whether it is affected
       * by other {@code ClassValue} users. Some of the benchmarked implementations don't use one or
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 17:27:14 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/primitives/Bytes.java

       * + i) mod array.length}. This is equivalent to {@code Collections.rotate(Bytes.asList(array),
       * distance)}, but is somewhat faster.
       *
       * <p>The provided "distance" may be negative, which will rotate left.
       *
       * @since 32.0.0
       */
      public static void rotate(byte[] array, int distance) {
        rotate(array, distance, 0, array.length);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          sort(
              insertionOrder,
              new Comparator<V>() {
                @Override
                public int compare(V left, V right) {
                  // The indexes are small enough for the subtraction trick to be safe.
                  return indexOfEntryWithValue(left) - indexOfEntryWithValue(right);
                }
    
                int indexOfEntryWithValue(V value) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 30 16:59:10 GMT 2025
    - 18.2K bytes
    - Click Count (0)
  7. build-logic/src/main/kotlin/okhttp.jvm-conventions.gradle.kts

    plugins {
      id("okhttp.base-conventions")
      id("com.gradleup.tapmoc")
    }
    
    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()
    
    extensions.configure<JavaPluginExtension> {
      toolchain {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Feb 09 14:40:26 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/ImmutableMultimap.java

         * Stores a collection of values with the same key in the built multimap.
         *
         * @throws NullPointerException if {@code key}, {@code values}, or any element in {@code values}
         *     is null. The builder is left in an invalid state.
         */
        @CanIgnoreReturnValue
        public Builder<K, V> putAll(K key, Iterable<? extends V> values) {
          if (key == null) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  9. .teamcity/src/main/kotlin/promotion/PublishNightlyDocumentation.kt

                "Promotes the latest successful documentation changes on '${branch.branchName}' from Ready for Nightly as a new nightly documentation snapshot"
    
            triggers {
                branch.determineNightlyPromotionTriggerHour()?.let { triggerHour ->
                    schedule {
                        scheduledTrigger(branch, policy = daily { this.hour = triggerHour }, pendingChangesOnly = true)
                    }
                }
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Dec 29 08:57:18 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  10. build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts

    plugins {
      id("okhttp.base-conventions")
    }
    
    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}"
    }
    
    
    val testRuntimeOnly = configurations.maybeCreate("testRuntimeOnly")
    dependencies {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 07:16:57 GMT 2026
    - 1.7K bytes
    - Click Count (0)
Back to Top