Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 72 of 72 for 0f (0.01 sec)

  1. android/guava/src/com/google/common/collect/CompactHashMap.java

        if (table instanceof Map) {
          return (Map<K, V>) table;
        }
        return null;
      }
    
      Map<K, V> createHashFloodingResistantDelegate(int tableSize) {
        return new LinkedHashMap<>(tableSize, 1.0f);
      }
    
      @CanIgnoreReturnValue
      Map<K, V> convertToHashFloodingResistantImplementation() {
        Map<K, V> newDelegate = createHashFloodingResistantDelegate(hashTableMask() + 1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

      @get:JvmName("queryParameterNames")
      val queryParameterNames: Set<String>
        get() {
          if (queryNamesAndValues == null) return emptySet()
          val result = LinkedHashSet<String>(queryNamesAndValues.size / 2, 1.0F)
          for (i in 0 until queryNamesAndValues.size step 2) {
            result.add(queryNamesAndValues[i]!!)
          }
          return result.unmodifiable()
        }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
Back to top