Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for STARTED (0.14 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Started data update process. */
        public static final String SUCCESS_started_data_update = "{success.started_data_update}";
    
        /** The key of the message: Started reindexing. */
        public static final String SUCCESS_reindex_started = "{success.reindex_started}";
    
        /** The key of the message: Bulk process is started. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		}
    		handleProbeSync(kl, update, handler, "readiness", status)
    	case update := <-kl.startupManager.Updates():
    		started := update.Result == proberesults.Success
    		kl.statusManager.SetContainerStartup(update.PodUID, update.ContainerID, started)
    
    		status := "unhealthy"
    		if started {
    			status = "started"
    		}
    		handleProbeSync(kl, update, handler, "startup", status)
    	case <-housekeepingCh:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		if !ok {
    			unknown++
    			continue
    		}
    
    		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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    			Running: &v1.ContainerStateRunning{},
    		},
    	}
    }
    func startedState(cName string) v1.ContainerStatus {
    	started := true
    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Running: &v1.ContainerStateRunning{},
    		},
    		Started: &started,
    	}
    }
    func runningStateWithStartedAt(cName string, startedAt time.Time) v1.ContainerStatus {
    	return v1.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test1", "0/3", "Init:0/2", "3 (10s ago)", "<unknown>"}}},
    		},
    		{
    			// Test pod has 2 restartable init containers, the first one started and the second one running but not started.
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: api.PodSpec{
    					InitContainers: []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    var main_init_done chan bool
    
    //go:linkname main_main main.main
    func main_main()
    
    // mainStarted indicates that the main M has started.
    var mainStarted bool
    
    // runtimeInitTime is the nanotime() at which the runtime started.
    var runtimeInitTime int64
    
    // Value to use for signal mask for newly created M's.
    var initSigmask sigset
    
    // The main goroutine.
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    		ticker := time.NewTicker(time.Second * 10)
    		defer ticker.Stop()
    		started := false
    	forLoop:
    		for {
    			select {
    			case <-r.Context().Done():
    				return
    			case <-ticker.C:
    				if !started {
    					// Start writing response to client
    					started = true
    					setCommonHeaders(w)
    					setEventStreamHeaders(w)
    					// Set 200 OK status
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. cmd/data-usage-cache_gen.go

    			}
    		case "next":
    			z.next, bts, err = msgp.ReadUint64Bytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "next")
    				return
    			}
    		case "started":
    			z.started, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "started")
    				return
    			}
    		case "cycleCompleted":
    			var zb0002 uint32
    			zb0002, bts, err = msgp.ReadArrayHeaderBytes(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top