Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for bstart (0.13 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

    $LOGGINGEXPORTER_HASH = 'c808c9645d84b06b89932bd707d51a9d1d0b451b5a702a5f9b2b4462c8be6502'
    
    # Restart Logging agent or starts it if it is not currently running
    function Restart-LoggingAgent {
      if (IsStackdriverAgentInstalled) {
          Restart-StackdriverAgent
          return
      }
    
       Restart-LogService $LOGGINGEXPORTER_SERVICE $LOGGINGEXPORTER_CMDLINE
       Restart-LogService $LOGGINGAGENT_SERVICE $LOGGINGAGENT_CMDLINE
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	if s.scavenge == nil {
    		s.scavenge = func(n uintptr) (uintptr, int64) {
    			start := nanotime()
    			r := mheap_.pages.scavenge(n, nil, false)
    			end := nanotime()
    			if start >= end {
    				return r, 0
    			}
    			scavenge.backgroundTime.Add(end - start)
    			return r, end - start
    		}
    	}
    	if s.shouldStop == nil {
    		s.shouldStop = func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		var message string
    		var reason containerKillReason
    		restart := shouldRestartOnFailure(pod)
    		if _, _, changed := containerChanged(&container, containerStatus); changed {
    			message = fmt.Sprintf("Container %s definition changed", container.Name)
    			// Restart regardless of the restart policy because the container
    			// spec changed.
    			restart = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Preconditions.java

        if (start < 0 || start > size) {
          return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
          return badPositionIndex(end, size, "end index");
        }
        // end < start
        return lenientFormat("end index (%s) must not be less than start index (%s)", end, start);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/time/time_test.go

    		sec := test.seconds
    		golden := &test.golden
    		tm := Unix(sec, 0).UTC()
    		start, end := tm.ZoneBounds()
    		if !(start.IsZero() && end.IsZero()) {
    			t.Errorf("ZoneBounds of %+v expects two zero Time, got:\n  start=%v\n  end=%v", *golden, start, end)
    		}
    	}
    
    	// If the zone begins at the beginning of time, start will be returned as a zero Time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			restartCount = count
    		}
    	}
    	return restartCount, nil
    }
    
    // startContainer starts a container and returns a message indicates why it is failed on error.
    // It starts the container through the following steps:
    // * pull the image
    // * create the container
    // * start the container
    // * run the post start lifecycle hooks (if applicable)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Preconditions.java

        if (start < 0 || start > size) {
          return badPositionIndex(start, size, "start index");
        }
        if (end < 0 || end > size) {
          return badPositionIndex(end, size, "end index");
        }
        // end < start
        return lenientFormat("end index (%s) must not be less than start index (%s)", end, start);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    //
    // For larger objects, if t is the type for the object starting at "start",
    // within some span whose mspan is s, then the bitmap at t.GCData is "tiled"
    // from "start" through "start+s.elemsize".
    // Specifically, the first bit of t.GCData corresponds to the word at "start",
    // the second to the word after "start", and so on up to t.PtrBytes. At t.PtrBytes,
    // we skip to "start+t.Size_" and begin again from there. This process is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    			print("?")
    		}
    	}
    
    	start := true
    	printcomma := func() {
    		if !start {
    			print(", ")
    		}
    	}
    	pi := 0
    	slotIdx := uint8(0) // register arg spill slot index
    printloop:
    	for {
    		o := p[pi]
    		pi++
    		switch o {
    		case abi.TraceArgsEndSeq:
    			break printloop
    		case abi.TraceArgsStartAgg:
    			printcomma()
    			print("{")
    			start = true
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    type work struct {
    	dt    *distTest     // unique test name, etc.
    	cmd   *exec.Cmd     // must write stdout/stderr to out
    	flush func()        // if non-nil, called after cmd.Run
    	start chan bool     // a true means to start, a false means to skip
    	out   bytes.Buffer  // combined stdout/stderr from cmd
    	err   error         // work result
    	end   chan struct{} // a value means cmd ended (or was skipped)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top