Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 129 for stops (0.16 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    	stop := istiotest.NewStop(t)
    	go configController.Run(stop)
    
    	se := serviceentry.NewController(configController, xdsUpdater, meshWatcher)
    	client.RunAndWait(stop)
    
    	kc.AppendWorkloadHandler(se.WorkloadInstanceHandler)
    	se.AppendWorkloadHandler(kc.WorkloadInstanceHandler)
    
    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      grad_outputs->push_back(SumGradHelper(scope, op, grad_inputs));
    
      // Stop propagation along reduction_indices
      grad_outputs->push_back(NoGradient());
      return scope.status();
    }
    REGISTER_GRADIENT_OP("Sum", SumGrad);
    
    Status MeanGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	}
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func createTestClient(attachedVolumes ...v1.AttachedVolume) *fake.Clientset {
    	fakeClient := &fake.Clientset{}
    	if len(attachedVolumes) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    	// yet to scan. A single pass therefore sees indexes j, j-1, j-2, j-3,
    	// and so on, in sorted but not necessarily adjacent order, until it finds
    	// one preceded by an index of type S, at which point it must stop.
    	//
    	// As we scan through the array, we clear the worked entries (sa[i] > 0) to zero,
    	// and we flip sa[i] < 0 to -sa[i], so that the loop finishes with sa containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/ajax/js/jquery-2.1.1.min.js

    ){var b=Xb(this,n.extend({},a),f);(e||L.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 82.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                .assertOutputContains("processing [producer.jar]")
    
            checkExecuteTransformWorkOperations(getExecutePlannedStepOperations(1).first(), [null])
        }
    
        def "no build operation for planned steps executed non-planned"() {
            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithChainedColorTransform()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    func parallelLabelHog(ctx context.Context, dur time.Duration, gogc int) {
    	var wg sync.WaitGroup
    	stop := make(chan struct{})
    	for i := 0; i < runtime.GOMAXPROCS(0); i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			labelHog(stop, gogc)
    		}()
    	}
    
    	time.Sleep(dur)
    	close(stop)
    	wg.Wait()
    }
    
    // Check that there is no deadlock when the program receives SIGPROF while in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top