Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for Stopped (2.34 sec)

  1. src/runtime/traceback.go

    	// context as opposed to a "best effort" context. The tracebacks with
    	// callbacks only happen when everything is stopped nicely.
    	// At other times, such as when gathering a stack for a profiling signal
    	// or when printing a traceback during a crash, everything may not be
    	// stopped nicely, and the stack walk may not be able to complete.
    	gp := u.g.ptr()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            ))
        }
    
        def "service is created once per build on first use and stopped at the end of the build"() {
            serviceImplementation()
            customTaskUsingServiceViaProperty()
            buildFile """
                def provider = gradle.sharedServices.registerIfAbsent("counter", CountingService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	}
    
    	semacquire(&goroutineProfile.sema)
    
    	ourg := getg()
    
    	pcbuf := makeProfStack() // see saveg() for explanation
    	stw := stopTheWorld(stwGoroutineProfile)
    	// Using gcount while the world is stopped should give us a consistent view
    	// of the number of live goroutines, minus the number of goroutines that are
    	// alive and permanently marked as "system". But to make this count agree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    // huge pages. See that constant for more information.
    //
    // Must be called whenever GC pacing is updated.
    //
    // mheap_.lock must be held or the world must be stopped.
    func gcPaceScavenger(memoryLimit int64, heapGoal, lastHeapGoal uint64) {
    	assertWorldStoppedOrLockHeld(&mheap_.lock)
    
    	// As described at the top of this file, there are two scavenge goals here: one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    	tp = span.typePointersOfUnchecked(x)
    	dumpTypePointers(tp)
    	for {
    		var addr uintptr
    		if tp, addr = tp.next(x + span.elemsize); addr == 0 {
    			println("runtime: would've stopped here")
    			dumpTypePointers(tp)
    			break
    		}
    		print("runtime: addr=", hex(addr), "\n")
    		dumpTypePointers(tp)
    	}
    	throw("heapSetType: pointer entry not correct")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				(status.State != kubecontainer.ContainerStateExited &&
    					status.State != kubecontainer.ContainerStateUnknown) {
    				continue
    			}
    			// Remove init containers in unknown state. It should have
    			// been stopped before pruneInitContainersBeforeStart is
    			// called.
    			count++
    			// keep the first init container for this name
    			if count == 1 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	// We must be able to advance this P.
    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    	// Since a P is bound to an M, and we're stopping on the same M we started, it must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    			if apierrors.IsNotFound(err) {
    				<-ticker.C
    				continue
    			}
    			t.Error(err)
    		}
    		if attach != nil {
    			t.Logf("attachment found on try %d, stopping wait...", i)
    			break
    		}
    	}
    	t.Logf("stopped waiting for attachment")
    
    	if attach == nil {
    		t.Logf("attachment not found for id:%v", attachID)
    	} else {
    		attach.Status = status
    		t.Logf("updating attachment %s with attach status %v", attachID, status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentCondition.Status != v1.ConditionUnknown {
    					currentCondition.Status = v1.ConditionUnknown
    					currentCondition.Reason = "NodeStatusUnknown"
    					currentCondition.Message = "Kubelet stopped posting node status."
    					currentCondition.LastTransitionTime = nowTimestamp
    				}
    			}
    		}
    		// We need to update currentReadyCondition due to its value potentially changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// Default value is 1.
    	// Example: when this is set to 30%, at most 30% of the total number of nodes
    	// that should be running the daemon pod (i.e. status.desiredNumberScheduled)
    	// can have their pods stopped for an update at any given time. The update
    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top