Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for congrats (0.24 sec)

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

       */
      public static <T extends @Nullable Object> Iterator<T> concat(
          Iterator<? extends Iterator<? extends T>> inputs) {
        return new ConcatenatedIterator<>(inputs);
      }
    
      /** Concats a varargs array of iterators without making a defensive copy of the array. */
      static <T extends @Nullable Object> Iterator<T> concatNoDefensiveCopy(
          Iterator<? extends T>... inputs) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a map whose values are derived from the original map's entries. In contrast
       * to {@link #transformValues}, this method's entry-transformation logic may depend on the key as
       * well as the value.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

    import org.jetbrains.kotlin.config.ApiVersion
    import org.jetbrains.kotlin.config.LanguageFeature
    import org.jetbrains.kotlin.config.LanguageVersionSettings
    import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
    import org.jetbrains.kotlin.descriptors.ClassKind
    import org.jetbrains.kotlin.descriptors.EffectiveVisibility
    import org.jetbrains.kotlin.descriptors.Visibility
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    import org.jetbrains.kotlin.config.ApiVersion
    import org.jetbrains.kotlin.config.LanguageFeature
    import org.jetbrains.kotlin.config.LanguageVersionSettings
    import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
    import org.jetbrains.kotlin.descriptors.ClassKind
    import org.jetbrains.kotlin.descriptors.EffectiveVisibility
    import org.jetbrains.kotlin.descriptors.Visibility
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  5. doc/go_spec.html

    underlying array.
    </p>
    <p>
    A slice, once initialized, is always associated with an underlying
    array that holds its elements.  A slice therefore shares storage
    with its array and with other slices of the same array; by contrast,
    distinct arrays always represent distinct storage.
    </p>
    <p>
    The array underlying a slice may extend past the end of the slice.
    The <i>capacity</i> is a measure of that extent: it is the sum of
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. CREDITS

    cooperation with the community in the case of network server software.
    
      The licenses for most software and other practical works are designed
    to take away your freedom to share and change the works.  By contrast,
    our General Public Licenses are intended to guarantee your freedom to
    share and change all versions of a program--to make sure it remains free
    software for all its users.
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
  7. RELEASE.md

                from Python or `InvalidArgument` from C++
            *   (since v2.7) `tf.compat.v1.nn.fused_batch_norm` backprop to `offset`
                when `is_training=False`
            *   (since v2.7) `tf.image.adjust_contrast` forward
            *   (since v2.7) `tf.image.resize` with `method=ResizeMethod.NEAREST`
                backprop
            *   (since v2.7) `tf.linalg.svd`
            *   (since v2.7) `tf.math.bincount`
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top