Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 for startm (0.12 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/start.go

    // first running goroutine in the traceback.
    //
    // If either of these flags is set, Start re-executes the current
    // executable as a child process, in a special mode in which it
    // acts as a telemetry sidecar for the parent process (the application).
    // In that mode, the call to Start will never return, so Start must
    // be called immediately within main, even before such things as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    }
    
    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            def build1 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build2 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build3 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            poll(120) {
                assert requestReceived
                assertConfirmationCount(build1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/inline.go

    						d = 1
    					}
    					del := p.Text[0] == '~'
    					x := &Emph{Marker: p.Text[:d], Inner: append([]Inline(nil), dst[start.i+1:]...)}
    					start.Text = start.Text[:len(start.Text)-d]
    					p.Text = p.Text[d:]
    					if start.Text == "" {
    						dst = dst[:start.i]
    					} else {
    						dst = dst[:start.i+1]
    					}
    					trimStack()
    					if del {
    						dst = append(dst, (*Del)(x))
    					} else if d == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. pilot/test/xds/fake.go

    			t.Fatal(err)
    		}
    	}()
    	t.Cleanup(func() {
    		grpcServer.Stop()
    		_ = listener.Close()
    	})
    	// Start the discovery server
    	s.Start(stop)
    	cg.ServiceEntryRegistry.XdsUpdater = s
    	// Now that handlers are added, get everything started
    	cg.Run()
    	kubelib.WaitForCacheSync("fake", stop,
    		cg.Registry.HasSynced,
    		cg.Store().HasSynced)
    	cg.ServiceEntryRegistry.ResyncEDS()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/os/exec/exec.go

    // order to release associated system resources.
    func (c *Cmd) Start() error {
    	// Check for doubled Start calls before we defer failure cleanup. If the prior
    	// call to Start succeeded, we don't want to spuriously close its pipes.
    	if c.Process != nil {
    		return errors.New("exec: already started")
    	}
    
    	started := false
    	defer func() {
    		closeDescriptors(c.childIOFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top