Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for iunmap (0.25 sec)

  1. api/go1.19.txt

    pkg hash/maphash, func Bytes(Seed, []uint8) uint64 #42710
    pkg hash/maphash, func String(Seed, string) uint64 #42710
    pkg html/template, method (*Template) Funcs(template.FuncMap) *Template #46121
    pkg html/template, type FuncMap = template.FuncMap #46121
    pkg net/http, method (*MaxBytesError) Error() string #30715
    pkg net/http, type MaxBytesError struct #30715
    pkg net/http, type MaxBytesError struct, Limit int64 #30715
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

        this?.takeIf { it.isNotEmpty() }
            ?.joinToString(separator = ", ", prefix = "<", postfix = ">", transform = transform)
            ?: ""
    
    
    private
    val ApiTypeUsage.isGroovyNamedArgumentMap
        get() = isMap && (
            typeArguments.all { it.isAny }
                || typeArguments.all { it.isStarProjectionTypeUsage }
                || (typeArguments[0].isString && (typeArguments[1].isStarProjectionTypeUsage || typeArguments[1].isAny))
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableClassToInstanceMapTest.java

      }
    
      public void testCopyOf_imap_empty() {
        Map<Class<?>, Object> in = Collections.emptyMap();
        ClassToInstanceMap<Object> map = ImmutableClassToInstanceMap.copyOf(in);
        assertTrue(map.isEmpty());
      }
    
      public void testCopyOf_imap_valid() {
        ImmutableMap<Class<? extends Number>, ? extends Number> in =
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Synchronized.java

        @Override
        public NavigableMap<K, V> subMap(
            K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
          synchronized (mutex) {
            return navigableMap(delegate().subMap(fromKey, fromInclusive, toKey, toInclusive), mutex);
          }
        }
    
        @Override
        public SortedMap<K, V> subMap(K fromKey, K toKey) {
          return subMap(fromKey, true, toKey, false);
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 53.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/Quantiles.java

          checkArgument(dataset.length > 0, "Cannot calculate quantiles of an empty dataset");
          if (containsNaN(dataset)) {
            Map<Integer, Double> nanMap = new LinkedHashMap<>();
            for (int index : indexes) {
              nanMap.put(index, NaN);
            }
            return unmodifiableMap(nanMap);
          }
    
          // Calculate the quotients and remainders in the integer division x = k * (N - 1) / q, i.e.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      const void* const address;
      const uint64_t length;
    } PosixMemoryRegion;
    
    static void Cleanup(TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<PosixMemoryRegion*>(region->plugin_memory_region);
      munmap(const_cast<void*>(r->address), r->length);
      delete r;
    }
    
    static const void* Data(const TF_ReadOnlyMemoryRegion* region) {
      auto r = static_cast<PosixMemoryRegion*>(region->plugin_memory_region);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    yamagata.gifu.jp
    yaotsu.gifu.jp
    yoro.gifu.jp
    annaka.gunma.jp
    chiyoda.gunma.jp
    fujioka.gunma.jp
    higashiagatsuma.gunma.jp
    isesaki.gunma.jp
    itakura.gunma.jp
    kanna.gunma.jp
    kanra.gunma.jp
    katashina.gunma.jp
    kawaba.gunma.jp
    kiryu.gunma.jp
    kusatsu.gunma.jp
    maebashi.gunma.jp
    meiwa.gunma.jp
    midori.gunma.jp
    minakami.gunma.jp
    naganohara.gunma.jp
    nakanojo.gunma.jp
    nanmoku.gunma.jp
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  8. android/guava-tests/test/com/google/common/collect/ForwardingSortedMapTest.java

        public void clear() {
          standardClear();
        }
    
        @Override
        public boolean isEmpty() {
          return standardIsEmpty();
        }
    
        @Override
        public SortedMap<K, V> subMap(K fromKey, K toKey) {
          return standardSubMap(fromKey, toKey);
        }
      }
    
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        suite.addTestSuite(ForwardingSortedMapTest.class);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

                    allEntries.addAll(normalValues);
                    SortedMultiset<E> multiset =
                        (SortedMultiset<E>) delegate.create(allEntries.toArray());
    
                    // call the smallest subMap overload that filters out the extreme
                    // values
                    if (from == Bound.INCLUSIVE) {
                      multiset = multiset.tailMultiset(firstInclusive, BoundType.CLOSED);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

                    allEntries.addAll(normalValues);
                    SortedMultiset<E> multiset =
                        (SortedMultiset<E>) delegate.create(allEntries.toArray());
    
                    // call the smallest subMap overload that filters out the extreme
                    // values
                    if (from == Bound.INCLUSIVE) {
                      multiset = multiset.tailMultiset(firstInclusive, BoundType.CLOSED);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 11.9K bytes
    - Viewed (0)
Back to top