Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Wikipedia (0.41 sec)

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

       *     power set size to exceed the {@code int} range)
       * @throws NullPointerException if {@code set} is or contains {@code null}
       * @see <a href="http://en.wikipedia.org/wiki/Power_set">Power set article at Wikipedia</a>
       * @since 4.0
       */
      @GwtCompatible(serializable = false)
      public static <E> Set<Set<E>> powerSet(Set<E> set) {
        return new PowerSet<E>(set);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/settings.md

    ## Environment Variables
    
    !!! tip
        If you already know what "environment variables" are and how to use them, feel free to skip to the next section below.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * 🔒 Check Content-Type request header before assuming JSON. Initial PR [#2118](https://github.com/tiangolo/fastapi/pull/2118) by [@patrickkwang](https://github.com/patrickkwang).
    
    This change fixes a [CSRF](https://en.wikipedia.org/wiki/Cross-site_request_forgery) security vulnerability when using cookies for authentication in path operations with JSON payloads sent by browsers.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
Back to top