Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for stops (0.06 sec)

  1. pkg/controller/podautoscaler/replica_calculator_test.go

    	stop := make(chan struct{})
    	defer close(stop)
    	informerFactory.Start(stop)
    	if !cache.WaitForNamedCacheSync("HPA", stop, informer.Informer().HasSynced) {
    		return
    	}
    
    	selector, err := metav1.LabelSelectorAsSelector(&metav1.LabelSelector{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Check the method documentation for more details.
    
    [[config_cache:adoption]]
    == Adoption steps
    
    An important prerequisite is to keep your Gradle and plugins versions up to date.
    The following explores the recommended steps for a successful adoption.
    It applies both to builds and plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    }
    
    // completeTerminated is invoked after syncTerminatedPod completes successfully and means we
    // can stop the pod worker. The pod is finalized at this point.
    func (p *podWorkers) completeTerminated(podUID types.UID) {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    
    	klog.V(4).InfoS("Pod is complete and the worker can now stop", "podUID", podUID)
    
    	p.cleanupPodUpdates(podUID)
    
    	status, ok := p.podSyncStatuses[podUID]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. docs/bucket/notifications/README.md

    The steps below show how to use this notification target in `namespace` format. The other format is very similar and is omitted for brevity.
    
    ### Step 1: Ensure Elasticsearch minimum requirements are met
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top