Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 815 for rain (0.02 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/PostPath.kt

          }
    
          println(fileSystem.source(path).buffer().readUtf8())
        }
      }
    
      companion object {
        val MEDIA_TYPE_JSON = "application/json".toMediaType()
      }
    }
    
    fun main() {
      PostPath().run()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/CurrentDateHeader.java

              .build();
          Request newRequest = request.newBuilder()
              .headers(newHeaders)
              .build();
          return chain.proceed(newRequest);
        }
      }
    
      public static void main(String... args) throws Exception {
        new CurrentDateHeader().run();
      }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Oct 31 15:32:50 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/PostString.java

          if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
    
          System.out.println(response.body().string());
        }
      }
    
      public static void main(String... args) throws Exception {
        new PostString().run();
      }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat May 25 18:02:55 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. docs/em/docs/index.md

    INFO:     Application startup complete.
    ```
    
    </div>
    
    <details markdown="1">
    <summary>๐Ÿ”ƒ ๐Ÿ“‹ <code>uvicorn main:app --reload</code>...</summary>
    
    ๐Ÿ“‹ `uvicorn main:app` ๐Ÿ”—:
    
    * `main`: ๐Ÿ“ `main.py` (๐Ÿ "๐Ÿ•น").
    * `app`: ๐ŸŽš โœ ๐Ÿ”˜ `main.py` โฎ๏ธ โธ `app = FastAPI()`.
    * `--reload`: โš’ ๐Ÿ’ฝ โ โฎ๏ธ ๐Ÿ“Ÿ ๐Ÿ”€. ๐Ÿ•ด ๐Ÿ‘‰ ๐Ÿ› ๏ธ.
    
    </details>
    
    ### โœ… โšซ๏ธ
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. docs/he/docs/index.md

    ```
    
    </div>
    
    <details markdown="1">
    <summary>ืขืœ ื”ืคืงื•ื“ื” <code>uvicorn main:app --reload</code>...</summary>
    
    ื”ืคืงื•ื“ื” `uvicorn main:app` ืžืชื™ื™ื—ืกืช ืœ:
    
    -   `main`: ื”ืงื•ื‘ืฅ `main.py` (ืžื•ื“ื•ืœ ืคื™ื™ืชื•ืŸ).
    -   `app`: ื”ืื•ื‘ื™ื™ืงื˜ ืฉื ื•ืฆืจ ื‘ืชื•ืš `main.py` ืขื ื”ืฉื•ืจื” <code dir="ltr">app = FastAPI()</code>.
    -   <code dir="ltr">--reload</code>: ื’ืจืžื• ืœืฉืจืช ืœื”ืชืืชื—ืœ ืœืื—ืจ ืฉื™ื ื•ื™ื™ื ื‘ืงื•ื“. ืขืฉื• ื–ืืช ืจืง ื‘ืกื‘ื™ื‘ืช ืคื™ืชื•ื—.
    
    </details>
    
    ### ื‘ื“ืงื• ืื•ืชื”
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionError.java

      /*
       * Ideally, this class would have exposed only constructors that require a non-null cause. See
       * https://github.com/jspecify/jspecify-reference-checker/blob/61aafa4ae52594830cfc2d61c8b113009dbdb045/src/main/java/com/google/jspecify/nullness/NullSpecTransfer.java#L789
       * and https://github.com/jspecify/jspecify/issues/490.
       *
       * (That would also have ensured that its cause was always an Error, rather than possibly another
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/CertificatePinning.kt

          for (certificate in response.handshake!!.peerCertificates) {
            println(CertificatePinner.pin(certificate))
          }
        }
      }
    }
    
    fun main() {
      CertificatePinning().run()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  9. docs/pl/docs/tutorial/index.md

    ## Wykonywanie kodu
    
    Wszystkie fragmenty kodu mogฤ… byฤ‡ skopiowane bezpoล›rednio i uลผyte (sฤ… poprawnymi i przetestowanymi plikami).
    
    ลปeby wykonaฤ‡ kaลผdy przykล‚ad skopiuj kod to pliku `main.py` i uruchom `uvicorn` za pomocฤ…:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_request_files/test_tutorial003_an.py

                                },
                            },
                        },
                    }
                },
                "/": {
                    "get": {
                        "summary": "Main",
                        "operationId": "main__get",
                        "responses": {
                            "200": {
                                "description": "Successful Response",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top