Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 301 for sortie (0.31 sec)

  1. tensorflow/c/eager/c_api_unified_experimental.cc

          "' (available: ");
      // Ensure deterministic (sorted) order in the error message
      std::set<string> factories_sorted;
      for (const auto& factory : GetFactories())
        factories_sorted.insert(factory.first);
      const char* comma = "";
      for (const string& factory : factories_sorted) {
        msg += comma + factory;
        comma = ", ";
      }
      msg += ")";
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeBasedTable.java

     * quickly, since the row key is provided. However, {@code column(columnKey).size()} takes longer,
     * since an iteration across all row keys occurs.
     *
     * <p>Because a {@code TreeBasedTable} has unique sorted values for a given row, both {@code
     * row(rowKey)} and {@code rowMap().get(rowKey)} are {@link SortedMap} instances, instead of the
     * {@link Map} specified in the {@link Table} interface.
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/SortedIterables.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Utilities for dealing with sorted collections of all types.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class SortedIterables {
      private SortedIterables() {}
    
      /**
       * Returns {@code true} if {@code elements} is a sorted collection using an ordering equivalent to
       * {@code comparator}.
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jun 30 10:33:07 GMT 2021
    - 2K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/eu/stopwords.txt

    hauei
    hauek
    hauetan
    hemen
    hemendik
    hemengo
    hi
    hona
    honek
    honela
    honetan
    honi
    hor
    hori
    horiei
    horiek
    horietan
    horko
    horra
    horrek
    horrela
    horretan
    horri
    hortik
    hura
    izan
    ni
    noiz
    nola
    non
    nondik
    nongo
    nor
    nora
    ze
    zein
    zen
    zenbait
    zenbat
    zer
    zergatik
    ziren
    zituen
    zu
    zuek
    zuen
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 709 bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMap.java

              // We want to retain only the last-put value for any given key, before sorting.
              // This could be improved, but orderEntriesByValue is rather rarely used anyway.
              nonNullEntries = lastEntryForEachKey(nonNullEntries, size);
              localSize = nonNullEntries.length;
            }
            Arrays.sort(
                nonNullEntries,
                0,
                localSize,
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 44.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingSortedSetMultimap.java

    import java.util.Comparator;
    import java.util.SortedSet;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A sorted set multimap which forwards all its method calls to another sorted set multimap.
     * Subclasses should override one or more methods to modify the behavior of the backing multimap as
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jun 15 21:08:00 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  7. bin/diff_yaml.py

        changed = 0
        for k in sorted(common):
            if q0[k] != q1[k]:
                changed += 1
    
        print("## +++ ", args.new)
        print("## --- ", args.orig)
        print("## Added:", len(added))
        print("## Removed:", len(removed))
        print("## Updated:", changed)
        print("## Unchanged:", len(common) - changed)
    
        for k in sorted(added):
            print("+", k)
    
    Python
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 03 16:14:57 GMT 2021
    - 4.5K bytes
    - Viewed (0)
  8. cmd/signature-v2.go

    		}
    		if val == "" {
    			canonicalQueries = append(canonicalQueries, key)
    			continue
    		}
    		canonicalQueries = append(canonicalQueries, key+"="+val)
    	}
    
    	// The queries will be already sorted as resourceList is sorted, if canonicalQueries
    	// is empty strings.Join returns empty.
    	canonicalQuery := strings.Join(canonicalQueries, "&")
    	if canonicalQuery != "" {
    		return encodedResource + "?" + canonicalQuery
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/MapsTest.java

        SortedMapDifference<Integer, Integer> diff = Maps.difference(SORTED_EMPTY, SORTED_EMPTY);
        assertTrue(diff.areEqual());
        assertEquals(SORTED_EMPTY, diff.entriesOnlyOnLeft());
        assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight());
        assertEquals(SORTED_EMPTY, diff.entriesInCommon());
        assertEquals(SORTED_EMPTY, diff.entriesDiffering());
        assertEquals("equal", diff.toString());
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 67.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MapsTest.java

        SortedMapDifference<Integer, Integer> diff = Maps.difference(SORTED_EMPTY, SORTED_EMPTY);
        assertTrue(diff.areEqual());
        assertEquals(SORTED_EMPTY, diff.entriesOnlyOnLeft());
        assertEquals(SORTED_EMPTY, diff.entriesOnlyOnRight());
        assertEquals(SORTED_EMPTY, diff.entriesInCommon());
        assertEquals(SORTED_EMPTY, diff.entriesDiffering());
        assertEquals("equal", diff.toString());
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 16:06:01 GMT 2024
    - 64.3K bytes
    - Viewed (0)
Back to top