Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 19 for killCh (0.06 seconds)

  1. cmd/bucket-lifecycle.go

    	event   lifecycle.Event
    }
    
    type transitionState struct {
    	transitionCh chan transitionTask
    
    	ctx        context.Context
    	objAPI     ObjectLayer
    	mu         sync.Mutex
    	numWorkers int
    	killCh     chan struct{}
    
    	activeTasks          atomic.Int64
    	missedImmediateTasks atomic.Int64
    
    	lastDayMu    sync.RWMutex
    	lastDayStats map[string]*lastDayTierStats
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 33.7K bytes
    - Click Count (0)
  2. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

        static void pkill(String pid) {
            ExecResult execResult = run(isWindows() ? new String[]{"taskkill.exe", "/F", "/T", "/PID", pid} : new String[]{"kill", "-9", pid});
            if (execResult.code != 0) {
                System.out.println("Failed to kill daemon process " + pid + ". Maybe already killed?\nStdout:\n" + execResult.stdout + "\nStderr:\n" + execResult.stderr);
            }
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Sep 23 13:49:45 GMT 2025
    - 12K bytes
    - Click Count (0)
  3. docs/en/data/topic_repos.yml

    - name: sqladmin
      html_url: https://github.com/smithyhq/sqladmin
      stars: 2696
      owner_login: smithyhq
      owner_html_url: https://github.com/smithyhq
    - name: YC-Killer
      html_url: https://github.com/sahibzada-allahyar/YC-Killer
      stars: 2675
      owner_login: sahibzada-allahyar
      owner_html_url: https://github.com/sahibzada-allahyar
    - name: fastapi-react
      html_url: https://github.com/Buuntu/fastapi-react
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 12:36:41 GMT 2026
    - 16K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            String[] args = new String[] { "11:-XX:OnOutOfMemoryError=\"kill -9 %p\"", "11:-Djava.awt.headless=true",
                    "8-:-Dfile.encoding=UTF-8", "17-:-XX:+UseStringDeduplication" };
    
            String[] result = JvmUtil.filterJvmOptions(args);
            assertEquals(3, result.length);
            assertEquals("-XX:OnOutOfMemoryError=\"kill -9 %p\"", result[0]);
            assertEquals("-Djava.awt.headless=true", result[1]);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                }
    
                if (p.waitFor(commandTimeout + commandDestroyTimeout, TimeUnit.MILLISECONDS)) {
                    if (task.isExecuted()) {
                        // Process was killed by the timer.
                        logger.warn("{} was timed out and destroyed.", getName());
                    } else {
                        // Process finished normally.
                        final int exitValue = p.exitValue();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  6. docs/tr/docs/deployment/concepts.md

    * Herhangi bir program, herhangi bir code, **yalnızca çalıştırılırken** bir şey yapabilir. Yani bir **process çalışıyorken**.
    * Process siz tarafından veya işletim sistemi tarafından **sonlandırılabilir** (ya da "killed" edilebilir). O anda çalışması/çalıştırılması durur ve artık **hiçbir şey yapamaz**.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                        process.destroy();
                        teminated = true;
                    } catch (final Exception e) {
                        if (logger.isInfoEnabled()) {
                            logger.info("Could not kill subprocess: process={}", process, e);
                        }
                    }
                }
            }
    
            /**
             * Sets the finished flag to indicate whether the process has completed.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  8. docs/en/docs/deployment/concepts.md

    * Any program, any code, **can only do things** when it is being **executed**. So, when there's a **process running**.
    * The process can be **terminated** (or "killed") by you, or by the operating system. At that point, it stops running/being executed, and it can **no longer do things**.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 18.5K bytes
    - Click Count (1)
  9. docs/uk/docs/deployment/concepts.md

    - Будь-яка програма, будь-який код **може щось робити** лише під час **виконання**. Тобто коли **процес запущений**.
    - Процес може бути **завершений** (або «kill») вами чи операційною системою. У цей момент він припиняє виконання і **більше нічого не може робити**.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 29.6K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/deployment/concepts.md

    ### 什麼是行程 { #what-is-a-process }
    
    「行程(process)」通常以更特定的方式使用,只指作業系統中正在執行的東西(如上面最後一點):
    
    - 在作業系統上「執行中」的特定程式。
        - 這不是指檔案或原始碼,而是特指正在被作業系統執行並管理的那個東西。
    - 任何程式、任何程式碼,只有在「被執行」時才能做事。所以,當有「行程在執行」時才能運作。
    - 行程可以被你或作業系統終止(kill)。此時它就停止執行,無法再做任何事。
    - 你電腦上執行的每個應用程式、每個視窗等,背後都有一些行程。而且在電腦開機時,通常會同時有許多行程在跑。
    - 同一個程式可以同時有多個行程在執行。
    
    如果你打開作業系統的「工作管理員」或「系統監控器」(或類似工具),就能看到許多正在執行的行程。
    
    例如,你大概會看到同一個瀏覽器(Firefox、Chrome、Edge 等)會有多個行程在執行。它們通常每個分頁一個行程,外加其他一些額外行程。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 16.1K bytes
    - Click Count (0)
Back to Top