Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for STARTED (0.16 sec)

  1. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus) {
    	*out = *in
    	in.State.DeepCopyInto(&out.State)
    	in.LastTerminationState.DeepCopyInto(&out.LastTerminationState)
    	if in.Started != nil {
    		in, out := &in.Started, &out.Started
    		*out = new(bool)
    		**out = **in
    	}
    	if in.AllocatedResources != nil {
    		in, out := &in.AllocatedResources, &out.AllocatedResources
    		*out = make(ResourceList, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    				t.Errorf("server timed out writing request body: got err %v; want os.ErrDeadlineExceeded", err)
    			}
    			return
    		default:
    			// The write timeout expired before the handler started.
    			t.Logf("handler didn't run, retrying")
    			cst.close()
    		}
    	}
    }
    
    func TestServerNoWriteTimeout(t *testing.T) { run(t, testServerNoWriteTimeout) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: scannerSubsystem,
    					Name:      "bucket_scans_started",
    					Help:      "Total number of bucket scans started since server uptime",
    					Type:      counterMetric,
    				},
    				Value: float64(globalScannerMetrics.lifetime(scannerMetricScanBucketDrive) + uint64(globalScannerMetrics.activeDrives())),
    			},
    			{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	go doReq("req1")
    	<-preDial
    	<-dialStarted
    
    	// get req2 to waiting on conns per host to go down below max
    	go doReq("req2")
    	<-preDial
    	select {
    	case <-dialStarted:
    		t.Error("req2 dial started while req1 dial in progress")
    		return
    	default:
    	}
    
    	// let req1 complete
    	stallDial <- struct{}{}
    	<-reqComplete
    
    	// let req2 complete
    	<-dialStarted
    	stallDial <- struct{}{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	if tgt == nil {
    		replLogIf(ctx, fmt.Errorf("replication resync failed for %s - target could not be created for arn %s", opts.bucket, opts.arn))
    		return
    	}
    	// mark resync status as resync started
    	if !heal {
    		s.markStatus(ResyncStarted, opts, objectAPI)
    	}
    
    	// Walk through all object versions - Walk() is always in ascending order needed to ensure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    wondered at this, but at the time it all seemed quite natural);
    but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT-
    POCKET, and looked at it, and then hurried on, Alice started to
    her feet, for it flashed across her mind that she had never
    before seen a rabbit with either a waistcoat-pocket, or a watch to
    take out of it, and burning with curiosity, she ran across the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    wondered at this, but at the time it all seemed quite natural);
    but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT-
    POCKET, and looked at it, and then hurried on, Alice started to
    her feet, for it flashed across her mind that she had never
    before seen a rabbit with either a waistcoat-pocket, or a watch to
    take out of it, and burning with curiosity, she ran across the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    // [DB.PingContext].
    func (db *DB) Ping() error {
    	return db.PingContext(context.Background())
    }
    
    // Close closes the database and prevents new queries from starting.
    // Close then waits for all queries that have started processing on the server
    // to finish.
    //
    // It is rare to Close a [DB], as the [DB] handle is meant to be
    // long-lived and shared between many goroutines.
    func (db *DB) Close() error {
    	db.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    	ssu := newFakeStatefulSetStatusUpdater(informerFactory.Apps().V1().StatefulSets())
    	ssc := NewDefaultStatefulSetControl(spc, ssu, history.NewFakeHistory(informerFactory.Apps().V1().ControllerRevisions()))
    
    	// The informer is not started. The tests here manipulate the local cache (indexers) directly, and there is no waiting
    	// for client state to sync. In fact, because the client is not updated during tests, informer updates will break tests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. src/database/sql/sql_test.go

    	go func() {
    		r, err := db.Query("SELECT|people|name|")
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		r.Close()
    		wg.Done()
    	}()
    	// Wait until the goroutine we've just created has started waiting.
    	<-drv.waitingCh
    	// Now close the busy connections. This provides a connection for
    	// the blocked goroutine and then fills up the idle queue.
    	for _, v := range rows {
    		v.Close()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top