Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,113 for in (0.12 sec)

  1. LICENSES/vendor/github.com/go-openapi/swag/LICENSE

          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri May 08 04:49:00 GMT 2020
    - 11.2K bytes
    - Viewed (0)
  2. LICENSES/vendor/cloud.google.com/go/compute/metadata/LICENSE

          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri May 26 17:20:33 GMT 2023
    - 11.2K bytes
    - Viewed (0)
  3. LICENSES/vendor/github.com/NYTimes/gziphandler/LICENSE

          and conversions to other media types.
    
          "Work" shall mean the work of authorship, whether in Source or
          Object form, made available under the License, as indicated by a
          copyright notice that is included in or attached to the work
          (an example is provided in the Appendix below).
    
          "Derivative Works" shall mean any work, whether in Source or Object
          form, that is based on (or derived from) the Work and for which the
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Feb 03 21:57:36 GMT 2021
    - 11.2K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         attempt to alter or restrict the recipients' rights in the Source Code
         Form.
    
    3.2. Distribution of Executable Form
    
         If You distribute Covered Software in Executable Form then:
    
         a. such Covered Software must also be made available in Source Code Form,
            as described in Section 3.1, and You must inform recipients of the
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableMultimap.java

      }
    
      /** Returns an immutable multimap containing the given entries, in order. */
      public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) {
        return ImmutableListMultimap.of(k1, v1, k2, v2);
      }
    
      /**
       * Returns an immutable multimap containing the given entries, in the "key-grouped" insertion
       * order described in the <a href="#iteration">class documentation</a>.
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/ByteSource.java

       * @throws IOException if an I/O error occurs while opening the stream
       * @since 15.0 (in 14.0 with return type {@link BufferedInputStream})
       */
      public InputStream openBufferedStream() throws IOException {
        InputStream in = openStream();
        return (in instanceof BufferedInputStream)
            ? (BufferedInputStream) in
            : new BufferedInputStream(in);
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 26.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/Quantiles.java

       *       to all the values with indexes in the range [{@code from}, {@code to}];
       *   <li>all the values with indexes in the range ({@code to}, {@code array.length - 1}] should be
       *       greater than or equal to all the values with indexes in the range [{@code from}, {@code
       *       to}].
       * </ul>
       *
       * This method will reorder the values with indexes in the range [{@code from}, {@code to}] such
    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)
  8. docs/de/docs/async.md

    Diese Art der Verwendung von `async` und `await` ist in der Sprache relativ neu.
    
    Aber sie erleichtert die Arbeit mit asynchronem Code erheblich.
    
    Die gleiche Syntax (oder fast identisch) wurde kürzlich auch in moderne Versionen von JavaScript (im Browser und in NodeJS) aufgenommen.
    
    Davor war der Umgang mit asynchronem Code jedoch deutlich komplexer und schwieriger.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:06:16 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/ValueGraph.java

    @ElementTypesAreNonnullByDefault
    public interface ValueGraph<N, V> extends BaseGraph<N> {
      //
      // ValueGraph-level accessors
      //
    
      /** Returns all nodes in this graph, in the order specified by {@link #nodeOrder()}. */
      @Override
      Set<N> nodes();
    
      /** Returns all edges in this graph. */
      @Override
      Set<EndpointPair<N>> edges();
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 15K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultimap.java

      }
    
      /** Returns an immutable multimap containing the given entries, in order. */
      public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) {
        return ImmutableListMultimap.of(k1, v1, k2, v2);
      }
    
      /**
       * Returns an immutable multimap containing the given entries, in the "key-grouped" insertion
       * order described in the <a href="#iteration">class documentation</a>.
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 25.6K bytes
    - Viewed (0)
Back to top