Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for stops (0.05 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) Run(logger klog.Logger) {
    	go wait.Until(func() {
    		p.flushBackoffQCompleted(logger)
    	}, 1.0*time.Second, p.stop)
    	go wait.Until(func() {
    		p.flushUnschedulablePodsLeftover(logger)
    	}, 30*time.Second, p.stop)
    }
    
    // queueingStrategy indicates how the scheduling queue should enqueue the Pod from unschedulable pod pool.
    type queueingStrategy int
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """
    
            when:
            fails("first", "second")
    
            then:
            failure.assertHasFailure("Failed to stop service 'counter1'.") {
                it.assertHasCause("broken")
            }
            failure.assertHasFailure("Failed to stop service 'counter2'.") {
                it.assertHasCause("broken")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	store := memory.Make(collections.Pilot)
    	configController := memory.NewController(store)
    
    	stop := test.NewStop(t)
    	go configController.Run(stop)
    	fx := xdsfake.NewFakeXDS()
    	go func() {
    		for {
    			select {
    			case <-stop:
    				return
    			case <-fx.Events: // drain
    			}
    		}
    	}()
    
    	meshcfg := mesh.NewFixedWatcher(mesh.DefaultMeshConfig())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    	defer globalProfilerMu.Unlock()
    	if globalProfiler == nil {
    		globalProfiler = make(map[string]minioProfiler, 10)
    	}
    
    	// Stop profiler of all types if already running
    	for k, v := range globalProfiler {
    		for _, p := range profiles {
    			if p == k {
    				v.Stop()
    				delete(globalProfiler, k)
    			}
    		}
    	}
    
    	for _, profiler := range profiles {
    		prof, err := startProfiler(profiler)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

            exit 1
            ;;
        esac
    fi
    
    # A list of controllers to enable
    KUBE_CONTROLLERS="${KUBE_CONTROLLERS:-"*"}"
    
    # Audit policy
    AUDIT_POLICY_FILE=${AUDIT_POLICY_FILE:-""}
    
    # Stop right away if the build fails
    set -e
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    kube::util::ensure-gnu-sed
    
    function usage {
                echo "This script starts a local kube cluster. "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// - if new state is "fullDisruption" we restore normal eviction rate,
    	//   - unless all zones in the cluster are in "fullDisruption" - in that case we stop all evictions.
    	if !allAreFullyDisrupted || !allWasFullyDisrupted {
    		// We're switching to full disruption mode
    		if allAreFullyDisrupted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  7. src/runtime/map.go

    	h.nevacuate++
    	// Experiments suggest that 1024 is overkill by at least an order of magnitude.
    	// Put it in there as a safeguard anyway, to ensure O(1) behavior.
    	stop := h.nevacuate + 1024
    	if stop > newbit {
    		stop = newbit
    	}
    	for h.nevacuate != stop && bucketEvacuated(t, h, h.nevacuate) {
    		h.nevacuate++
    	}
    	if h.nevacuate == newbit { // newbit == # of oldbuckets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	// before PreBind, as if the some other PreBind plugin had failed.
    	unreserveBeforePreBind *result
    }
    
    // prepare contains changes for objects in the API server.
    // Those changes are applied before running the steps. This can
    // be used to simulate concurrent changes by some other entities
    // like a resource driver.
    type prepare struct {
    	filter     change
    	prescore   change
    	reserve    change
    	unreserve  change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    //
    //go:nosplit
    func (tp typePointers) next(limit uintptr) (typePointers, uintptr) {
    	for {
    		if tp.mask != 0 {
    			return tp.nextFast()
    		}
    
    		// Stop if we don't actually have type information.
    		if tp.typ == nil {
    			return typePointers{}, 0
    		}
    
    		// Advance to the next element if necessary.
    		if tp.addr+goarch.PtrSize*ptrBits >= tp.elem+tp.typ.PtrBytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            /*
            a1->b1
            a2->b2->a1
    
            resolution process:
    
            1. stop resolution, resolve conflict a1 vs a2
            2. select a2, restart resolution
            3. stop, resolve b1 vs b2
            4. select b2, restart
            5. resolve b2 dependencies, a1 has been evicted previously but it should show correctly on the report
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top