Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toSortedSet (0.56 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt

        val subprojects: SortedSet<String>,
        val parallelizationMethod: ParallelizationMethod,
    ) {
        constructor(subprojectList: List<String>, parallelizationMethod: ParallelizationMethod) : this(
            subprojectList.toSortedSet(),
            parallelizationMethod,
        )
    
        constructor(jsonObject: Map<String, Any>) : this(
            (jsonObject["subprojects"] as List<*>).map { it.toString() },
            ParallelizationMethod.fromJson(jsonObject),
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Apr 10 15:09:32 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FluentIterable.java

       * {@code comparator.compare(x, y) == 0}) removed. To produce an {@code ImmutableSortedSet} sorted
       * by its natural ordering, use {@code toSortedSet(Ordering.natural())}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code ImmutableSortedSet.copyOf(comparator,
       * stream.iterator())}, or pass {@link ImmutableSortedSet#toImmutableSortedSet} to {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/FluentIterable.java

       * {@code comparator.compare(x, y) == 0}) removed. To produce an {@code ImmutableSortedSet} sorted
       * by its natural ordering, use {@code toSortedSet(Ordering.natural())}.
       *
       * <p><b>{@code Stream} equivalent:</b> pass {@link ImmutableSortedSet#toImmutableSortedSet} to
       * {@code stream.collect()}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
Back to top