Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 1,895 for Run (0.01 seconds)

  1. .github/workflows/maven.yml

          with:
            repository: codelibs/fess-parent
            ref: ${{ env.PARENT_BRANCH }}
            path: fess-parent
        - name: Install fess-parent
          run: |
            cd fess-parent
            mvn install -Dgpg.skip=true
        - name: Build with Maven
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun May 18 02:59:16 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/AsynchronousGet.kt

    import okhttp3.Call
    import okhttp3.Callback
    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.Response
    
    class AsynchronousGet {
      private val client = OkHttpClient()
    
      fun run() {
        val request =
          Request
            .Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build()
    
        client.newCall(request).enqueue(
          object : Callback {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenCling.java

            int exitCode = new MavenCling().run(args, null, null, null, false);
            System.exit(exitCode);
        }
    
        /**
         * ClassWorld Launcher "enhanced" entry point: returning exitCode and accepts Class World.
         */
        public static int main(String[] args, ClassWorld world) throws IOException {
            return new MavenCling(world).run(args, null, null, null, false);
        }
    
        /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 3K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+pull-request+docs-check.yml

              branches:
                - "${ghprbActualCommit}"
        triggers:
          - github-pull-request:
              org-list:
                - elastic
              allow-whitelist-orgs-as-admins: true
              trigger-phrase: '.*run\W+elasticsearch-ci/docs-check.*'
              github-hooks: true
              status-context: elasticsearch-ci/docs-check
              cancel-builds-on-update: true
              included-regions:
                - ^docs/.*
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 20:27:05 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  5. .github/workflows/codeql-analysis.yml

        # 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
          uses: github/codeql-action/autobuild@v3
    
        # ℹ️ Command-line programs to run using the OS shell.
        # πŸ“š https://git.io/JvXDl
    
        # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Thu Nov 20 13:34:13 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTaskIntegrationTest.kt

                        ]
                    }
                """.trimIndent()
            )
    
            val initialVerifyResult = run(":verifyAcceptedApiChangesOrdering").buildAndFail()
            assertEquals(TaskOutcome.FAILED, initialVerifyResult.task(":verifyAcceptedApiChangesOrdering")!!.outcome)
    
            val sortingResult = run(":sortAcceptedApiChanges").build()
            assertEquals(TaskOutcome.SUCCESS, sortingResult.task(":sortAcceptedApiChanges")!!.outcome)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 14 02:17:00 GMT 2025
    - 9.7K bytes
    - Click Count (0)
  7. samples/guide/src/main/java/okhttp3/recipes/PostFile.java

    public final class PostFile {
      public static final MediaType MEDIA_TYPE_MARKDOWN
          = MediaType.get("text/x-markdown; charset=utf-8");
    
      private final OkHttpClient client = new OkHttpClient();
    
      public void run() throws Exception {
        File file = new File("README.md");
    
        Request request = new Request.Builder()
            .url("https://api.github.com/markdown/raw")
            .post(RequestBody.create(file, MEDIA_TYPE_MARKDOWN))
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat May 25 18:02:55 GMT 2019
    - 1.5K bytes
    - Click Count (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/DevServer.kt

          .build()
    
      fun run() {
        try {
          val request = Request(server.url("/"))
    
          client.newCall(request).execute().use { response ->
            if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
            println(response.request.url)
          }
        } finally {
          server.shutdown()
        }
      }
    }
    
    fun main() {
      DevServer().run()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  9. samples/guide/src/main/java/okhttp3/recipes/kt/ParseResponseWithMoshi.kt

    import okhttp3.Request
    
    class ParseResponseWithMoshi {
      private val client = OkHttpClient()
      private val moshi = Moshi.Builder().build()
      private val gistJsonAdapter = moshi.adapter(Gist::class.java)
    
      fun run() {
        val request =
          Request
            .Builder()
            .url("https://api.github.com/gists/c2a7c39532239ff261be")
            .build()
        client.newCall(request).execute().use { response ->
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  10. docs/ko/docs/fastapi-cli.md

    기본적으둜 **auto-reload**κ°€ ν™œμ„±ν™”λ˜μ–΄ μ½”λ“œμ— 변경이 생기면 μ„œλ²„λ₯Ό μžλ™μœΌλ‘œ λ‹€μ‹œ λ‘œλ“œν•©λ‹ˆλ‹€. μ΄λŠ” λ¦¬μ†ŒμŠ€λ₯Ό 많이 μ‚¬μš©ν•˜λ©°, λΉ„ν™œμ„±ν™”ν–ˆμ„ λ•Œλ³΄λ‹€ μ•ˆμ •μ„±μ΄ λ–¨μ–΄μ§ˆ 수 μžˆμŠ΅λ‹ˆλ‹€. 개발 ν™˜κ²½μ—μ„œλ§Œ μ‚¬μš©ν•΄μ•Ό ν•©λ‹ˆλ‹€. λ˜ν•œ 컴퓨터가 μžμ‹ κ³Όλ§Œ ν†΅μ‹ ν•˜κΈ° μœ„ν•œ(`localhost`) IP인 `127.0.0.1`μ—μ„œ 연결을 λŒ€κΈ°ν•©λ‹ˆλ‹€.
    
    ## `fastapi run` { #fastapi-run }
    
    `fastapi run`을 μ‹€ν–‰ν•˜λ©΄ ν”„λ‘œλ•μ…˜ λͺ¨λ“œλ‘œ FastAPIκ°€ μ‹œμž‘λ©λ‹ˆλ‹€.
    
    기본적으둜 **auto-reload**λŠ” λΉ„ν™œμ„±ν™”λ˜μ–΄ μžˆμŠ΅λ‹ˆλ‹€. λ˜ν•œ μ‚¬μš© κ°€λŠ₯ν•œ λͺ¨λ“  IP μ£Όμ†Œλ₯Ό μ˜λ―Έν•˜λŠ” `0.0.0.0`μ—μ„œ 연결을 λŒ€κΈ°ν•˜λ―€λ‘œ, ν•΄λ‹Ή 컴퓨터와 톡신할 수 μžˆλŠ” λˆ„κ΅¬μ—κ²Œλ‚˜ 곡개적으둜 μ ‘κ·Ό κ°€λŠ₯ν•΄μ§‘λ‹ˆλ‹€. 보톡 ν”„λ‘œλ•μ…˜μ—μ„œλŠ” μ΄λ ‡κ²Œ μ‹€ν–‰ν•˜λ©°, 예λ₯Ό λ“€μ–΄ μ»¨ν…Œμ΄λ„ˆμ—μ„œ 이런 λ°©μ‹μœΌλ‘œ μ‹€ν–‰ν•©λ‹ˆλ‹€.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
Back to Top