Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for chain (0.08 sec)

  1. src/database/sql/sql_test.go

    			db.SetConnMaxLifetime(10 * time.Second)
    
    			conn, err := db.conn(ctx, alwaysNewConn)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			afterPutConn := make(chan struct{})
    			waitingForConn := make(chan struct{})
    
    			go func() {
    				defer close(afterPutConn)
    
    				conn, err := db.conn(ctx, alwaysNewConn)
    				if err == nil {
    					db.putConn(conn, err, false)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	kubelet.resyncInterval = time.Second * 30
    
    	ch := make(chan kubetypes.PodUpdate)
    	close(ch)
    
    	// sanity check (also prevent this test from hanging in the next step)
    	ok := kubelet.syncLoopIteration(ctx, ch, kubelet, make(chan time.Time), make(chan time.Time), make(chan *pleg.PodLifecycleEvent, 1))
    	require.False(t, ok, "Expected syncLoopIteration to return !ok since update chan was closed")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	// expected in case of read timeout
    	w.Header().Set("Connection", "close")
    
    	setEventStreamHeaders(w)
    
    	logCh := make(chan log.Info, 1000)
    	peers, _ := newPeerRestClients(globalEndpoints)
    	encodedCh := make(chan []byte, 1000+len(peers)*1000)
    	err = globalConsoleSys.Subscribe(logCh, ctx.Done(), node, limitLines, logKind, nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    	sharedInformers := informers.NewSharedInformerFactory(client, 0)
    	alwaysStarted := make(chan struct{})
    	close(alwaysStarted)
    	gc, err := NewGarbageCollector(ctx, client, metadataClient, &testRESTMapper{testrestmapper.TestOnlyStaticRESTMapper(legacyscheme.Scheme)}, ignoredResources, sharedInformers, alwaysStarted)
    	if err != nil {
    		t.Fatal(err)
    	}
    	stop := make(chan struct{})
    	go sharedInformers.Start(stop)
    	return garbageCollector{gc, stop}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    //     containers have failed health checks
    func (kl *Kubelet) syncLoopIteration(ctx context.Context, configCh <-chan kubetypes.PodUpdate, handler SyncHandler,
    	syncCh <-chan time.Time, housekeepingCh <-chan time.Time, plegCh <-chan *pleg.PodLifecycleEvent) bool {
    	select {
    	case u, open := <-configCh:
    		// Update from a config source; dispatch it to the right handler
    		// callback.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"central_african_republic":             "\U0001f1e8\U0001f1eb",
    	"ceuta_melilla":                        "\U0001f1ea\U0001f1e6",
    	"chad":                                 "\U0001f1f9\U0001f1e9",
    	"chains":                               "\u26d3\ufe0f",
    	"chair":                                "\U0001fa91",
    	"champagne":                            "\U0001f37e",
    	"chart":                                "\U0001f4b9",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		ctx, cancelCtx = context.WithTimeout(r.Context(), h.dt)
    		defer cancelCtx()
    	}
    	r = r.WithContext(ctx)
    	done := make(chan struct{})
    	tw := &timeoutWriter{
    		w:   w,
    		h:   make(Header),
    		req: r,
    	}
    	panicChan := make(chan any, 1)
    	go func() {
    		defer func() {
    			if p := recover(); p != nil {
    				panicChan <- p
    			}
    		}()
    		h.handler.ServeHTTP(tw, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    	manager.podStoreSynced = alwaysReady
    	manager.jobStoreSynced = alwaysReady
    
    	var testJob batch.Job
    	received := make(chan struct{})
    
    	// The update sent through the fakeWatcher should make its way into the workqueue,
    	// and eventually into the syncHandler.
    	manager.syncHandler = func(ctx context.Context, key string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				Spec:       example.PodSpec{NodeName: "machine"},
    			},
    			deleted: true,
    		},
    	}
    
    	for _, test := range tests {
    		ready := make(chan struct{})
    		updated := make(chan struct{})
    		var readyOnce, updatedOnce sync.Once
    		var called int
    		deleteValidation := func(ctx context.Context, obj runtime.Object) error {
    			readyOnce.Do(func() {
    				close(ready)
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	expectedDesiredReplicas      int32
    	expectedConditions           []autoscalingv2.HorizontalPodAutoscalerCondition
    	// Channel with names of HPA objects which we have reconciled.
    	processed chan string
    
    	// expected results reported to the mock monitor at first.
    	expectedReportedReconciliationActionLabel     monitor.ActionLabel
    	expectedReportedReconciliationErrorLabel      monitor.ErrorLabel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top