Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 996 for 100 (0.01 sec)

  1. docs/em/docs/tutorial/response-status-code.md

    ///
    
    ## ๐Ÿ”ƒ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ‘” ๐Ÿ“Ÿ
    
    /// note
    
    ๐Ÿšฅ ๐Ÿ‘† โช ๐Ÿ’ญ โšซ๏ธโ” ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ‘” ๐Ÿ“Ÿ, ๐Ÿšถ โญ ๐Ÿ“„.
    
    ///
    
    ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”, ๐Ÿ‘† ๐Ÿ“จ ๐Ÿ”ข ๐Ÿ‘” ๐Ÿ“Ÿ 3๏ธโƒฃ 9๏ธโƒฃ ๐Ÿ• ๐Ÿ“จ.
    
    ๐Ÿ‘ซ ๐Ÿ‘” ๐Ÿ“Ÿ โœ”๏ธ ๐Ÿ“› ๐Ÿ”— ๐Ÿค” ๐Ÿ‘ซ, โœ‹๏ธ โš  ๐Ÿ• ๐Ÿ”ข.
    
    ๐Ÿ“:
    
    * `100` & ๐Ÿ”› "โ„น". ๐Ÿ‘† ๐Ÿ›Ž โš™๏ธ ๐Ÿ‘ซ ๐Ÿ”—. ๐Ÿ“จ โฎ๏ธ ๐Ÿ‘ซ ๐Ÿ‘” ๐Ÿ“Ÿ ๐Ÿšซ๐Ÿ”œ โœ”๏ธ ๐Ÿ’ช.
    * **`200`** & ๐Ÿ”› "๐Ÿ†" ๐Ÿ“จ. ๐Ÿ‘ซ ๐Ÿ• ๐Ÿ‘† ๐Ÿ”œ โš™๏ธ ๐Ÿ†.
        * `200` ๐Ÿ”ข ๐Ÿ‘” ๐Ÿ“Ÿ, โ” โ›“ ๐ŸŒ "๐Ÿ‘Œ".
        * โž•1๏ธโƒฃ ๐Ÿ–ผ ๐Ÿ”œ `201`, "โœ". โšซ๏ธ ๐Ÿ›Ž โš™๏ธ โฎ๏ธ ๐Ÿ— ๐Ÿ†• โบ ๐Ÿ’ฝ.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. docs/ru/docs/advanced/async-tests.md

    {* ../../docs_src/async_tests/test_main.py *}
    
    ## ะ—ะฐะฟัƒัะบ ั‚ะตัั‚ะพะฒ
    
    ะ’ั‹ ะผะพะถะตั‚ะต ะทะฐะฟัƒัั‚ะธั‚ัŒ ัะฒะพะธ ั‚ะตัั‚ั‹ ะบะฐะบ ะพะฑั‹ั‡ะฝะพ:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ---> 100%
    ```
    
    </div>
    
    ## ะŸะพะดั€ะพะฑะฝะตะต
    
    ะœะฐั€ะบะตั€ `@pytest.mark.anyio` ะณะพะฒะพั€ะธั‚ pytest, ั‡ั‚ะพ ั‚ะตัั‚ะพะฒะฐั ั„ัƒะฝะบั†ะธั ะดะพะปะถะฝะฐ ะฑั‹ั‚ัŒ ะฒั‹ะทะฒะฐะฝะฐ ะฐัะธะฝั…ั€ะพะฝะฝะพ:
    
    {* ../../docs_src/async_tests/test_main.py hl[7] *}
    
    /// tip | ะŸะพะดัะบะฐะทะบะฐ
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jan 27 15:36:13 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/TearDownAccepter.java

    import com.google.errorprone.annotations.DoNotMock;
    import org.jspecify.annotations.NullMarked;
    
    /**
     * Any object which can accept registrations of {@link TearDown} instances.
     *
     * @author Kevin Bourrillion
     * @since 10.0
     */
    @DoNotMock("Implement with a lambda")
    @GwtCompatible
    @NullMarked
    public interface TearDownAccepter {
      /**
       * Registers a TearDown implementor which will be run after the test proper.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComBlankResponseTest.java

    class SmbComBlankResponseTest {
    
        private SmbComBlankResponse response;
        private byte[] buffer;
    
        @BeforeEach
        void setUp() {
            response = new SmbComBlankResponse();
            buffer = new byte[100];
        }
    
        /**
         * Test for the writeParameterWordsWireFormat method.
         * It should always return 0.
         */
        @Test
        void testWriteParameterWordsWireFormat() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketHttpTest.kt

            .callTimeout(Duration.ofMillis(100))
            .build()
        newWebSocket()
        clientListener.assertFailure(InterruptedIOException::class.java, "timeout")
      }
    
      @Test
      @Throws(Exception::class)
      fun callTimeoutDoesNotApplyOnceConnected() {
        client =
          client
            .newBuilder()
            .callTimeout(Duration.ofMillis(100))
            .build()
        webServer.enqueue(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbFileOutputStreamTest.java

            lenient().when(mockFileHandle.getInitialSize()).thenReturn(100L); // File already has 100 bytes
    
            when(mockTreeHandle.send(any(Smb2WriteRequest.class), any())).thenReturn(mockWriteResponse);
            when(mockWriteResponse.getCount()).thenReturn(8);
    
            // Create output stream in append mode - note the append flag sets initial fp to 100
            outputStream = new SmbFileOutputStream(mockFile, mockTreeHandle, mockFileHandle,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/util/SecureKeyManagerTest.java

            String sessionId = "age-test";
            keyManager.storeSessionKey(sessionId, testKey, "AES");
    
            long initialAge = keyManager.getKeyAge(sessionId);
            assertTrue(initialAge >= 0 && initialAge < 100, "Initial age should be small");
    
            Thread.sleep(200);
    
            long laterAge = keyManager.getKeyAge(sessionId);
            assertTrue(laterAge >= 200, "Age should increase after delay");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - go.opentelemetry.io/contrib/propagators/b3: v1.10.0 โ†’ v1.17.0
    - go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc: v1.10.0 โ†’ v1.19.0
    - go.opentelemetry.io/otel/exporters/otlp/otlptrace: v1.10.0 โ†’ v1.19.0
    - go.opentelemetry.io/otel/metric: v0.31.0 โ†’ v1.19.0
    - go.opentelemetry.io/otel/sdk: v1.10.0 โ†’ v1.19.0
    - go.opentelemetry.io/otel/trace: v1.10.0 โ†’ v1.19.0
    - go.opentelemetry.io/otel: v1.10.0 โ†’ v1.19.0
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

     *
     * <p>When wrapping an {@code Error} from another thread, prefer {@link ExecutionError}. When
     * wrapping a checked exception, prefer {@code ExecutionException}.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    public class UncheckedExecutionException extends RuntimeException {
      /*
       * Ideally, this class would have exposed only constructors that require a non-null cause. See
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java

                }
              }
    
              System.out.println(bytesWritten);
    
              if (contentLength != -1) {
                System.out.format("%d%% done\n", (100 * bytesWritten) / contentLength);
              }
            }
          }
        };
    
        RequestBody requestBody = RequestBody.create(
          new File("docs/images/logo-square.png"),
          MEDIA_TYPE_PNG);
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 4.2K bytes
    - Viewed (1)
Back to top