Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for 1013 (0.03 sec)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          if (c.isEmpty()) {
            return false;
          }
          int oldSize = size(); // calls refreshIfEmpty
    
          // Guava issue 1013: AbstractSet and most JDK set implementations are
          // susceptible to quadratic removeAll performance on lists;
          // use a slightly smarter implementation here
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    ```
    .
    ├── Dockerfile
    ├── main.py
    └── requirements.txt
    ```
    
    Then you would just have to change the corresponding paths to copy the file inside the `Dockerfile`:
    
    ```{ .dockerfile .annotate hl_lines="10  13" }
    FROM python:3.9
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    # (1)!
    COPY ./main.py /code/
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/collect/Sets.java

         * is just more than the set's size.  We augment the test by
         * assuming that sets have fast contains() performance, and other
         * collections don't.  See
         * https://github.com/google/guava/issues/1013
         */
        if (collection instanceof Set && collection.size() > set.size()) {
          return Iterators.removeAll(set.iterator(), collection);
        } else {
          return removeAllImpl(set, collection.iterator());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  4. docs/en/data/topic_repos.yml

      owner_html_url: https://github.com/atpuxiner
    - name: runhouse
      html_url: https://github.com/run-house/runhouse
      stars: 1043
      owner_login: run-house
      owner_html_url: https://github.com/run-house
    - name: flock
      html_url: https://github.com/Onelevenvy/flock
      stars: 1010
      owner_login: Onelevenvy
      owner_html_url: https://github.com/Onelevenvy
    - name: autollm
      html_url: https://github.com/viddexa/autollm
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:57:41 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

                assertEquals(0, response.writeDataWireFormat(buffer, i * 10));
                assertEquals(0, response.readSetupWireFormat(buffer, i * 10, 10));
                assertEquals(0, response.readParametersWireFormat(buffer, i * 10, 10));
                assertEquals(0, response.readDataWireFormat(buffer, i * 10, 10));
            }
        }
    
        @Test
        @DisplayName("Test toString contains proper class name")
        void testToStringFormat() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketHttpTest.kt

        val clientReason = "unexpected Sec-WebSocket-Extensions in response header"
        serverListener.assertClosing(1010, clientReason)
        server.close(1010, "")
        clientListener.assertClosing(1010, "")
        clientListener.assertClosed(1010, "")
        serverListener.assertClosed(1010, clientReason)
        clientListener.assertExhausted()
        serverListener.assertExhausted()
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/request-forms-and-files.md

    ## Define `File` and `Form` parameters { #define-file-and-form-parameters }
    
    Create file and form parameters the same way you would for `Body` or `Query`:
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[10:12] *}
    
    The files and form fields will be uploaded as form data and you will receive the files and form fields.
    
    And you can declare some of the files as `bytes` and some as `UploadFile`.
    
    /// warning
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/response-cookies.md

    Then set Cookies in it, and then return it:
    
    {* ../../docs_src/response_cookies/tutorial001.py hl[10:12] *}
    
    /// tip
    
    Keep in mind that if you return a response directly instead of using the `Response` parameter, FastAPI will return it directly.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        assertThat(Doubles.contains(EMPTY, 1.0)).isFalse();
        assertThat(Doubles.contains(ARRAY1, 2.0)).isFalse();
        assertThat(Doubles.contains(ARRAY234, 1.0)).isFalse();
        assertThat(Doubles.contains(new double[] {-1.0}, -1.0)).isTrue();
        assertThat(Doubles.contains(ARRAY234, 2.0)).isTrue();
        assertThat(Doubles.contains(ARRAY234, 3.0)).isTrue();
        assertThat(Doubles.contains(ARRAY234, 4.0)).isTrue();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/InputValidatorTest.java

        }
    
        @Test
        @DisplayName("Test safe integer multiplication")
        void testSafeMultiplication() {
            assertEquals(100, InputValidator.safeMultiply(10, 10));
            assertEquals(-100, InputValidator.safeMultiply(10, -10));
    
            assertThrows(ArithmeticException.class, () -> InputValidator.safeMultiply(Integer.MAX_VALUE, 2));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.9K bytes
    - Viewed (0)
Back to top