Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for startm (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "started": {
              "description": "Specifies whether the container has passed its startup probe. Initialized as false, becomes true after startupProbe is considered successful. Resets to false when the container is restarted, or if kubelet loses state temporarily. Is always true when no startupProbe is defined.",
              "type": "boolean"
            },
            "state": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	MaxLifetimeClosed int64         // The total number of connections closed due to SetConnMaxLifetime.
    }
    
    // Stats returns database statistics.
    func (db *DB) Stats() DBStats {
    	wait := db.waitDuration.Load()
    
    	db.mu.Lock()
    	defer db.mu.Unlock()
    
    	stats := DBStats{
    		MaxOpenConnections: db.maxOpen,
    
    		Idle:            len(db.freeConn),
    		OpenConnections: db.numOpen,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Start Crawling */
        public static final String LABELS_wizard_start_crawling_title = "{labels.wizard_start_crawling_title}";
    
        /** The key of the message: Crawler */
        public static final String LABELS_wizard_start_crawler_title = "{labels.wizard_start_crawler_title}";
    
        /** The key of the message: To click "Start Crawling" button, you can start a crawling now. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    			setStartTime: true,
    			jobName:      "job2",
    		},
    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			job := newJobWithName(tc.jobName, 1, 1, 6, batch.NonIndexedCompletion)
    			job.Spec.ActiveDeadlineSeconds = ptr.To[int64](1)
    			if tc.setStartTime {
    				start := metav1.NewTime(fakeClock.Now())
    				job.Status.StartTime = &start
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation_test.go

    Invalid value: ".io": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]'), webhooks[1].matchConditions[0].name: Invalid value: "some name": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		}
    
    		switch {
    		case containerStatus.State.Running != nil:
    			if containerStatus.Started == nil || !*containerStatus.Started {
    				pendingInitialization++
    			}
    			running++
    		case containerStatus.State.Terminated != nil:
    			// Do nothing here, as terminated restartable init containers are not
    			// taken into account for the pod phase.
    		case containerStatus.State.Waiting != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

          --project "${PROJECT}" \
          --region "${REGION}" -q > /dev/null; then
          # successful operation - wait until it's visible
          start="$(date +%s)"
          while true; do
            now="$(date +%s)"
            # Timeout set to 15 minutes
            if [[ $((now - start)) -gt 900 ]]; then
              echo "Timeout while waiting for master IP visibility"
              exit 2
            fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    						}
    
    						// For providing ranged content
    						start, rangeLen, err := rs.GetOffsetLength(ci.Size)
    						if err != nil {
    							start, rangeLen = 0, ci.Size
    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	data, _, err := cache.GetBytes(cache.Default(), key)
    	if err == nil && len(data) > len(id) {
    		stats := strings.Split(string(data[:len(data)-len(id)]), "\x00")
    		if len(stats)%2 != 0 {
    			goto Miss
    		}
    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    		ts.Config.ConnState = func(c net.Conn, state ConnState) {
    			if c == nil {
    				t.Errorf("nil conn seen in state %s", state)
    				return
    			}
    			sl := <-activeLog
    			if sl.active == nil && state == StateNew {
    				sl.active = c
    			} else if sl.active != c {
    				t.Errorf("unexpected conn in state %s", state)
    				activeLog <- sl
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top