Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 313 for kill (0.07 sec)

  1. pkg/envoy/proxy.go

    		// This means access logs will be written once we have ~250 requests, or ever 1s, which ever comes first.
    		// Reducing this to 1s optimizes for UX while retaining performance.
    		// At low QPS access logs are unlikely a bottleneck, and these users will now see logs after 1s rather than 10s.
    		// At high QPS (>250 QPS) we will log the same amount as we will log due to exceeding buffer size, rather
    		// than the flush interval.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. docs/site-replication/run-multi-site-oidc.sh

    	cat /tmp/minio1_1.log
    	echo "minio2 ============"
    	cat /tmp/minio2_1.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    export MINIO_CI_CD=1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    				}
    
    				// expect we get a pod sync record for kill that should have the default grace period
    				if actual, expected := records[uid], []syncPodRecord{
    					{name: "pod1", updateType: kubetypes.SyncPodCreate},
    					{name: "pod1", updateType: kubetypes.SyncPodKill},
    					// second attempt at kill
    					{name: "pod1", updateType: kubetypes.SyncPodKill},
    					{name: "pod1", terminated: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. docs/site-replication/run-multi-site-ldap.sh

    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio-ldap-idp{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

            def changesUserHome = arguments.contains("-g")
            if (changesUserHome && !debug) {
                // A separate daemon be started operating on the changed user home - lets isolate it so that we kill it in the end
                requireIsolatedTestKitDir = true
            }
            boolean closeServices = (debug && requireIsolatedTestKitDir) || changesUserHome
            List<String> allArgs = arguments as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. docs/site-replication/run-multi-site-minio-idp.sh

    	cat /tmp/minio2_1.log
    	cat /tmp/minio2_2.log
    	echo "minio3 ============"
    	cat /tmp/minio3_1.log
    	cat /tmp/minio3_2.log
    
    	exit 1
    }
    
    cleanup() {
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/minio-internal-idp{1,2,3}
    }
    
    cleanup
    
    unset MINIO_KMS_KES_CERT_FILE
    unset MINIO_KMS_KES_KEY_FILE
    unset MINIO_KMS_KES_ENDPOINT
    unset MINIO_KMS_KES_KEY_NAME
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/go/script_test.go

    		// When we run commands that execute subprocesses, we want to reserve two
    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    		// produce whatever useful output it can (such as a stack trace). After the
    		// first grace period expires, we'll escalate to os.Kill, leaving the second
    		// grace period for the test function to record its output before the test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		resources.CpuQuota = cpuQuota
    		resources.CpuPeriod = cpuPeriod
    	}
    
    	// runc requires cgroupv2 for unified mode
    	if isCgroup2UnifiedMode() {
    		resources.Unified = map[string]string{
    			// Ask the kernel to kill all processes in the container cgroup in case of OOM.
    			// See memory.oom.group in https://www.kernel.org/doc/html/latest/admin-guide/cgroup-v2.html for
    			// more info.
    			"memory.oom.group": "1",
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    					continue
    				}
    
    				dsc.failedPodsBackoff.Next(backoffKey, now)
    
    				msg := fmt.Sprintf("Found failed daemon pod %s/%s on node %s, will try to kill it", pod.Namespace, pod.Name, node.Name)
    				logger.V(2).Info("Found failed daemon pod on node, will try to kill it", "pod", klog.KObj(pod), "node", klog.KObj(node))
    				// Emit an event so that it's discoverable to users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. src/os/os_test.go

    	}()
    
    	// Wait for the process to be started.
    	// (It will close its stdout when it reaches TestMain.)
    	io.Copy(io.Discard, stdout)
    
    	processKiller(cmd.Process)
    }
    
    func TestKillStartProcess(t *testing.T) {
    	testKillProcess(t, func(p *Process) {
    		err := p.Kill()
    		if err != nil {
    			t.Fatalf("Failed to kill test process: %v", err)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top