Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for startm (0.2 sec)

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

      return $gateway
    }
    
    # Get pod IP range start based (the third address) on pod cidr
    # We reserve the first two in the cidr range for gateways. Start the cidr
    # range from the third so that IPAM does not allocate those IPs to pods.
    function Get_PodIP_Range_Start([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $start=ConvertTo_DottedDecimalIP($network+3)
      return $start
    }
    
    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/mgc.go

    	// Finish sweep before we start concurrent scan.
    	systemstack(func() {
    		finishsweep_m()
    	})
    
    	// clearpools before we start the GC. If we wait the memory will not be
    	// reclaimed until the next GC cycle.
    	clearpools()
    
    	work.cycles.Add(1)
    
    	// Assists and workers can start the moment we start
    	// the world.
    	gcController.startCycle(now, int(gomaxprocs), trigger)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    }
    
    // init initializes u to start unwinding gp's stack and positions the
    // iterator on gp's innermost frame. gp must not be the current G.
    //
    // A single unwinder can be reused for multiple unwinds.
    func (u *unwinder) init(gp *g, flags unwindFlags) {
    	// Implementation note: This starts the iterator on the first frame and we
    	// provide a "valid" method. Alternatively, this could start in a "before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/api/apps/v1/types.go

    type StatefulSetOrdinals struct {
    	// start is the number representing the first replica's index. It may be used
    	// to number replicas from an alternate index (eg: 1-indexed) over the default
    	// 0-indexed names, or to orchestrate progressive movement of replicas from
    	// one StatefulSet to another.
    	// If set, replica indices will be in the range:
    	//   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. src/testing/testing.go

    func removeAll(path string) error {
    	const arbitraryTimeout = 2 * time.Second
    	var (
    		start     time.Time
    		nextSleep = 1 * time.Millisecond
    	)
    	for {
    		err := os.RemoveAll(path)
    		if !isWindowsRetryable(err) {
    			return err
    		}
    		if start.IsZero() {
    			start = time.Now()
    		} else if d := time.Since(start) + nextSleep; d >= arbitraryTimeout {
    			return err
    		}
    		time.Sleep(nextSleep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	}
    
    	// Step 5: start ephemeral containers
    	// These are started "prior" to init containers to allow running ephemeral containers even when there
    	// are errors starting an init container. In practice init containers will start first since ephemeral
    	// containers cannot be specified on pod creation.
    	for _, idx := range podContainerChanges.EphemeralContainersToStart {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. 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)
  10. hack/local-up-cluster.sh

      echo
      echo "No kubelet was started because you set START_MODE=nokubelet"
      echo "Run this script again with START_MODE=kubeletonly to run a kubelet"
    fi
    
    if [[ "${START_MODE}" != "kubeletonly" ]]; then
      echo
      if [[ "${ENABLE_DAEMON}" = false ]]; then
        echo "To start using your cluster, you can open up another terminal/tab and run:"
      else
        echo "To start using your cluster, run:"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top