Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for aloop (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    BUILD SUCCESSFUL in 500ms
    1 actionable task: 1 executed
    Configuration cache entry reused.
    ----
    
    If it succeeds on your build, congratulations, you can now try with more useful tasks.
    You should target your development loop.
    A good example is running tests after making incremental changes.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	"cmd/go/internal/modload"
    	"cmd/go/internal/search"
    	"cmd/go/internal/str"
    	"cmd/go/internal/trace"
    	"cmd/go/internal/work"
    	"cmd/internal/test2json"
    
    	"golang.org/x/mod/module"
    )
    
    // Break init loop.
    func init() {
    	CmdTest.Run = runTest
    }
    
    const testUsage = "go test [build/test flags] [packages] [build/test flags & test binary flags]"
    
    var CmdTest = &base.Command{
    	CustomFlags: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    			resolvedAliases[alias] = referencedService
    			continue
    		}
    		// Otherwise, we need to traverse the alias "graph".
    		// In an obscure edge case, a user could make a loop, so we will need to handle that.
    		seen := sets.New(alias.Hostname, referencedService)
    		for {
    			n, f := unnamespacedRawAlias[referencedService]
    			if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

      if [ $? == "1" ]; then
        echo "time out on waiting for coredns deployment"
        exit 1
      fi
    
      # bump log level
      echo "6" | sudo tee /proc/sys/kernel/printk
    
      # loop through and grab all things in dmesg
      dmesg > "${LOG_DIR}/dmesg.log"
      dmesg -w --human >> "${LOG_DIR}/dmesg.log" &
    }
    
    function start_kubelet {
        KUBELET_LOG=${LOG_DIR}/kubelet.log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/controller/disruption/disruption_test.go

    	rs.Labels = dLabels
    	add(t, dc.rsStore, rs)
    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 1, minimumOne+1, minimumOne, collectionSize, map[string]metav1.Time{})
    
    	// By the end of this loop, the number of ready pods should be N+2 (hence minimumTwo+2).
    	unavailablePods = 2*collectionSize - (minimumTwo + 2) - unavailablePods
    	for i := int32(1); i <= collectionSize; i++ {
    		pod, _ := newPod(t, fmt.Sprintf("quuux %d", i))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server_test.go

    		"healthz log sub":                 {url: "/healthz/log", bucket: "healthz"},
    		"healthz ping":                    {url: "/healthz/ping", bucket: "healthz"},
    		"healthz sync loop":               {url: "/healthz/syncloop", bucket: "healthz"},
    		"logs":                            {url: "/logs/", bucket: "logs"},
    		"logs with path":                  {url: "/logs/logpath", bucket: "logs"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    	}
    	ctxt.loader = loader.NewLoader(flags, &ctxt.ErrorReporter.ErrorReporter)
    	ctxt.ErrorReporter.SymName = func(s loader.Sym) string {
    		return ctxt.loader.SymName(s)
    	}
    
    	// ctxt.Library grows during the loop, so not a range loop.
    	i := 0
    	for ; i < len(ctxt.Library); i++ {
    		lib := ctxt.Library[i]
    		if lib.Shlib == "" {
    			if ctxt.Debugvlog > 1 {
    				ctxt.Logf("autolib: %s (from %s)\n", lib.File, lib.Objref)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    		nodesNeedingDaemonPods = append(nodesNeedingDaemonPods, node.Name)
    	case shouldContinueRunning:
    		// If a daemon pod failed, delete it
    		// If there's non-daemon pods left on this node, we will create it in the next sync loop
    		var daemonPodsRunning []*v1.Pod
    		for _, pod := range daemonPods {
    			if pod.DeletionTimestamp != nil {
    				continue
    			}
    			if pod.Status.Phase == v1.PodFailed {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    	listeners := make([]*listener.Listener, 0, len(listenerMap))
    	for _, le := range listenerMap {
    		// TODO: this could be outside the loop, but we would get object sharing in EnvoyFilter patches.
    		fallthroughNetworkFilters := buildOutboundCatchAllNetworkFiltersOnly(lb.push, lb.node)
    		l := buildListenerFromEntry(lb, le, fallthroughNetworkFilters)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	nc.daemonSetStore = daemonSetInformer.Lister()
    	nc.daemonSetInformerSynced = daemonSetInformer.Informer().HasSynced
    
    	return nc, nil
    }
    
    // Run starts an asynchronous loop that monitors the status of cluster nodes.
    func (nc *Controller) Run(ctx context.Context) {
    	defer utilruntime.HandleCrash()
    
    	// Start events processing pipeline.
    	nc.broadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top