Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 169 for processDest (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

            when:
            def handle = executer.withArguments("--parallel").withTasks("app1:resolve", "app2:resolve").start()
            then:
            handle.waitForFinish()
        }
    
        def "multiple processes can run immutable transforms at the same time"() {
            given:
            List<BuildTestFile> builds = (1..3).collect { idx ->
                def lib = mavenRepo.module("org.test.foo", "build${idx}").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{111, "EDC5111I", "Permission denied."},
    	{112, "EDC5112I", "Resource temporarily unavailable."},
    	{113, "EDC5113I", "Bad file descriptor."},
    	{114, "EDC5114I", "Resource busy."},
    	{115, "EDC5115I", "No child processes."},
    	{116, "EDC5116I", "Resource deadlock avoided."},
    	{117, "EDC5117I", "File exists."},
    	{118, "EDC5118I", "Incorrect address."},
    	{119, "EDC5119I", "File too large."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cgroup_manager_linux.go

    func (m *cgroupManagerImpl) Pids(name CgroupName) []int {
    	// we need the driver specific name
    	cgroupFsName := m.Name(name)
    
    	// Get a list of processes that we need to kill
    	pidsToKill := sets.New[int]()
    	var pids []int
    	for _, val := range m.subsystems.MountPoints {
    		dir := path.Join(val, cgroupFsName)
    		_, err := os.Stat(dir)
    		if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/math/big/arith_ppc64x.s

    	SLD     $3, R7, R7
    	SUB     R6, R3, R11     // dest - src
    	CMPU    R11, R7, CR2    // < len?
    	BLT     CR2, backward   // there is overlap, copy backwards
    	MOVD    $0, R14
    	// shlVU processes backwards, but added a forward copy option 
    	// since its faster on POWER
    repeat:
    	MOVD    (R6)(R14), R15  // Copy 8 bytes at a time
    	MOVD    R15, (R3)(R14)
    	ADD     $8, R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/runtime/debug/garbage.go

    // environment variable, the call is ignored.
    func SetTraceback(level string)
    
    // SetMemoryLimit provides the runtime with a soft memory limit.
    //
    // The runtime undertakes several processes to try to respect this
    // memory limit, including adjustments to the frequency of garbage
    // collections and returning memory to the underlying system more
    // aggressively. This limit will be respected even if GOGC=off (or,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/options/options.go

    	hostname, err := os.Hostname()
    	if err != nil {
    		return nil, fmt.Errorf("unable to get hostname: %v", err)
    	}
    	// add a uniquifier so that two processes on the same host don't accidentally both become active
    	id := hostname + "_" + string(uuid.NewUUID())
    
    	rl, err := resourcelock.NewFromKubeconfig(config.ResourceLock,
    		config.ResourceNamespace,
    		config.ResourceName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager_linux.go

    			err = manager.Apply(pid)
    			if err != nil {
    				errs = append(errs, fmt.Errorf("failed to move PID %d (in %q) to %q: %v", pid, cont, name, err))
    			}
    		}
    	}
    
    	// Also apply oom-score-adj to processes
    	oomAdjuster := oom.NewOOMAdjuster()
    	klog.V(5).InfoS("Attempting to apply oom_score_adj to process", "oomScoreAdj", oomScoreAdj, "pid", pid)
    	if err := oomAdjuster.ApplyOOMScoreAdj(pid, oomScoreAdj); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. src/testing/fuzz.go

    	isFuzzWorker     *bool
    
    	// corpusDir is the parent directory of the fuzz test's seed corpus within
    	// the package.
    	corpusDir = "testdata/fuzz"
    )
    
    // fuzzWorkerExitCode is used as an exit code by fuzz worker processes after an
    // internal error. This distinguishes internal errors from uncontrolled panics
    // and other failures. Keep in sync with internal/fuzz.workerExitCode.
    const fuzzWorkerExitCode = 70
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    // Manager can be used to coordinate certificate renewal and related processes,
    // like CSR generation or checking certificate expiration
    type Manager struct {
    	// cfg holds the kubeadm ClusterConfiguration
    	cfg *kubeadmapi.ClusterConfiguration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    		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",
    		}
    	}
    	return &resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top