Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,436 for startm (0.17 sec)

  1. cluster/gce/gci/configure-helper.sh

        if [[ "${RUN_KONNECTIVITY_PODS:-false}" == "true" ]]; then
          log-wrap 'StartKonnectivityServer' start-konnectivity-server
        fi
        log-wrap 'StartKubeControllerManager' start-kube-controller-manager
        if [[ "${CLOUD_PROVIDER_FLAG:-external}" == "external" ]]; then
          log-wrap 'StartCloudControllerManager' start-cloud-controller-manager
        fi
        log-wrap 'StartKubeScheduler' start-kube-scheduler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/server.go

    					sdsServiceLog.Errorf("SDS grpc server for workload proxies failed to start: %v", err)
    					serverOk = false
    				}
    			}
    			if serverOk && setUpUdsOK {
    				started = true
    				break
    			}
    			time.Sleep(waitTime)
    			waitTime *= 2
    		}
    		if !started {
    			sdsServiceLog.Warn("SDS grpc server could not be started")
    		}
    	}()
    }
    
    func (s *Server) grpcServerOptions() []grpc.ServerOption {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_pgo_auto.txt

    stderr 'compile.*-pgoprofile=.*a1.go'
    
    # check that pgo applied to dependencies
    stderr 'compile.*-p test/dep.*-pgoprofile=.*'
    
    # check that pgo appears in build info
    # N.B. we can't start the stdout check with -pgo because the script assumes that
    # if the first arg starts with - it is a grep flag.
    stderr 'build\\t-pgo=.*default\.pgo'
    
    # check also that -pgo appears with the other flags, before non-flag settings
    ! stderr 'build\\t[A-Za-z].*build\\t-pgo'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/runtime/coro.go

    	c := new(coro)
    	c.f = f
    	pc := getcallerpc()
    	gp := getg()
    	systemstack(func() {
    		mp := gp.m
    		start := corostart
    		startfv := *(**funcval)(unsafe.Pointer(&start))
    		gp = newproc1(startfv, gp, pc, true, waitReasonCoroutine)
    
    		// Scribble down locked thread state if needed and/or donate
    		// thread-lock state to the new goroutine.
    		if mp.lockedExt+mp.lockedInt != 0 {
    			c.mp = mp
    			c.lockedExt = mp.lockedExt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	// we have a personal informer that is narrowly scoped, start it.
    	go c.configMapInformer.Run(ctx.Done())
    
    	// wait for your secondary caches to fill before starting your work
    	if !cache.WaitForNamedCacheSync(c.name, ctx.Done(), c.preRunCaches...) {
    		return
    	}
    
    	// doesn't matter what workers say, only start one.
    	go wait.Until(c.runWorker, time.Second, ctx.Done())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/cni-watcher.go

    	return s
    }
    
    func (s *CniPluginServer) Stop() {
    	s.cniListenServerCancel()
    }
    
    // Start starts up a UDS server which receives events from the CNI chain plugin.
    func (s *CniPluginServer) Start() error {
    	if s.sockAddress == "" {
    		return fmt.Errorf("no socket address provided")
    	}
    	log.Info("Start a listen server for CNI plugin events")
    	unixListener, err := pluginlistener.NewListener(s.sockAddress)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapiv3/controller.go

    	key, quit := c.queue.Get()
    	if quit {
    		return false
    	}
    	defer c.queue.Done(key)
    
    	// log slow aggregations
    	start := time.Now()
    	defer func() {
    		elapsed := time.Since(start)
    		if elapsed > time.Second {
    			klog.Warningf("slow openapi aggregation of %q: %s", key, elapsed)
    		}
    	}()
    
    	err := c.syncFn(key)
    	if err == nil {
    		c.queue.Forget(key)
    		return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        }
    
        def "can change template file for default start script generators"() {
            given:
            file('customUnixStartScript.txt') << '${applicationName} start up script for UN*X'
            file('customWindowsStartScript.txt') << '${applicationName} start up script for Windows'
            buildFile << """
    startScripts {
        applicationName = 'myApp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/establish/establishing_controller.go

    }
    
    // Run starts the EstablishingController.
    func (ec *EstablishingController) Run(stopCh <-chan struct{}) {
    	defer utilruntime.HandleCrash()
    	defer ec.queue.ShutDown()
    
    	klog.Info("Starting EstablishingController")
    	defer klog.Info("Shutting down EstablishingController")
    
    	if !cache.WaitForCacheSync(stopCh, ec.crdSynced) {
    		return
    	}
    
    	// only start one worker thread since its a slow moving API
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/utils_test.go

    		if schedule == nil {
    			t.Errorf("expected 1 start time, got nil")
    		} else if !schedule.Equal(T1) {
    			t.Errorf("expected: %v, got: %v", T1, schedule)
    		}
    	}
    	{
    		// Case 3: known LastScheduleTime, no start needed.
    		// Creation time is before T1.
    		cj.ObjectMeta.CreationTimestamp = metav1.Time{Time: T1.Add(-10 * time.Minute)}
    		// Status shows a start at the expected time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top