Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,528 for startm (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/cm/memorymanager/memory_manager.go

    	stateImpl, err := state.NewCheckpointState(m.stateFileDirectory, memoryManagerStateFileName, m.policy.Name())
    	if err != nil {
    		klog.ErrorS(err, "Could not initialize checkpoint manager, please drain node and remove policy state file")
    		return err
    	}
    	m.state = stateImpl
    
    	err = m.policy.Start(m.state)
    	if err != nil {
    		klog.ErrorS(err, "Policy start error")
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                if (response.getBody().jsonPath().getInt("response.status") == 0) {
                    logger.info("Start scheduler \"{}\"", schedulerId);
                    return;
                }
                ThreadUtil.sleep(1000L);
            }
            fail("could not start job.");
        }
    
        protected static void waitJob(final String namePrefix) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		rb.out = append(rb.out, rb.byte[start:end]...)
    	}
    	return true
    }
    
    // flush appends the normalized segment to out and resets rb.
    func (rb *reorderBuffer) flush(out []byte) []byte {
    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		out = append(out, rb.byte[start:end]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/html/template/js.go

    	case '+', '-':
    		// ++ and -- are not regexp preceders, but + and - are whether
    		// they are used as infix or prefix operators.
    		start := n - 1
    		// Count the number of adjacent dashes or pluses.
    		for start > 0 && s[start-1] == c {
    			start--
    		}
    		if (n-start)&1 == 1 {
    			// Reached for trailing minus signs since "---" is the
    			// same as "-- -".
    			return jsCtxRegexp
    		}
    		return jsCtxDivOp
    	case '.':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top