Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,836 for startm (0.17 sec)

  1. 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)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

            return this.daemonRegistry;
        }
    
        /**
         * Starts the daemon, receiving connections asynchronously (i.e. returns immediately).
         *
         * @throws IllegalStateException if this daemon is already running, or has already been stopped.
         */
        public void start() {
            LOGGER.info("start() called on daemon - {}", daemonContext);
            lifecycleLock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/intervals.go

    		}
    		if i == 0 {
    			continue
    		}
    		// check for badly ordered starts
    		pst := is[i-1].st
    		pen := is[i-1].en
    		if pst >= st {
    			return fmt.Errorf("range start not ordered %d:%d less than prev %d:%d", st, en,
    				pst, pen)
    		}
    		// check end of last range against start of this range
    		if pen > st {
    			return fmt.Errorf("bad range elem %d:%d overlaps prev %d:%d", st, en,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.438932Z	info	sds	SDS gRPC server for workload UDS starts, listening on "./etc/istio/proxy/SDS"
    
    2020-06-29T23:37:27.438952Z	info	sds	Start SDS grpc server
    2020-06-29T23:37:27.439456Z	info	sds	SDS gRPC server for ingress gateway controller starts, listening on "/var/run/ingress_gateway/sds"
    
    2020-06-29T23:37:27.439555Z	info	sds	Start SDS grpc server for ingress gateway proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K 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. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    [[sec:customizing_start_script_generation]]
    === Customizing start script generation
    
    The application plugin can generate Unix (suitable for Linux, macOS etc.) and Windows start scripts out of the box.
    The start scripts launch a JVM with the specified settings defined as part of the original build and runtime environment (e.g. `JAVA_OPTS` env var).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal.go

    		if xmlname.name != "" {
    			start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
    		} else {
    			fv := xmlname.value(val, dontInitNilPointers)
    			if v, ok := fv.Interface().(Name); ok && v.Local != "" {
    				start.Name = v
    			}
    		}
    	}
    	if start.Name.Local == "" && finfo != nil {
    		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
    	}
    	if start.Name.Local == "" {
    		name := typ.Name()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    			}
    		}
    	}
    }
    
    // Start starts the node shutdown manager and will start watching the node for shutdown events.
    func (m *managerImpl) Start() error {
    	stop, err := m.start()
    	if err != nil {
    		return err
    	}
    	go func() {
    		for {
    			if stop != nil {
    				<-stop
    			}
    
    			time.Sleep(dbusReconnectPeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/iter.go

    			break
    		} else if v == ssOverflow {
    			i.next = nextCGJCompose
    			break
    		}
    		if i.info.ccc < prevCC {
    			goto doNorm
    		}
    	}
    	return i.returnSlice(startp, i.p)
    doNorm:
    	// reset to start position
    	i.p = startp
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    	if i.info.multiSegment() {
    		d := i.info.Decomposition()
    		info := i.rb.f.info(input{bytes: d}, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  10. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

       * Starts the server and binds to the given socket address.
       *
       * @param inetSocketAddress the socket address to bind the server on
       */
      @Synchronized
      @Throws(IOException::class)
      private fun start(inetSocketAddress: InetSocketAddress) {
        check(!shutdown) { "shutdown() already called" }
        if (started) return
        started = true
    
        this._inetSocketAddress = inetSocketAddress
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
Back to top