Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 941 for Starting (0.26 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumer.java

        public void start() {
            if (processStdOutput == null) {
                throw new IllegalStateException("Cannot start consuming daemon output because streams have not been connected first.");
            }
            LOGGER.debug("Starting consuming the daemon process output.");
    
            // Wait for the process' stdout to indicate that the process has been started successfully
            StringWriter output = new StringWriter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/proxy/config/config.go

    	c.eventHandlers = append(c.eventHandlers, handler)
    }
    
    // Run waits for cache synced and invokes handlers after syncing.
    func (c *EndpointSliceConfig) Run(stopCh <-chan struct{}) {
    	c.logger.Info("Starting endpoint slice config controller")
    
    	if !cache.WaitForNamedCacheSync("endpoint slice config", stopCh, c.listerSynced) {
    		return
    	}
    
    	for _, h := range c.eventHandlers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Ensure that tests pass sanity check: `./gradlew sanityCheck`.
    - [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`.
    
    ### Reviewing cheatsheet
    
    Before merging the PR, comments starting with 
    - ❌ ❓**must** be fixed
    - 🤔 💅 **should** be fixed
    - 💭 **may** be fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

    import groovy.json.JsonOutput;
    
    import java.util.Arrays;
    import java.util.List;
    import java.util.stream.Collectors;
    import java.util.stream.IntStream;
    
    public class ExecutionGraph {
        // Execution 1,2,3, starting from 1
        int index;
        String title;
        List<Line> data;
    
        public ExecutionGraph(int index, Line... lines) {
            this.index = index;
            this.title = "Execution " + index + " (ms)";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeparam.go

    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    	check *Checker  // for lazy type bound completion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. api/README

    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. pkg/kubelet/events/event.go

    	NodeNotReady                         = "NodeNotReady"
    	NodeSchedulable                      = "NodeSchedulable"
    	NodeNotSchedulable                   = "NodeNotSchedulable"
    	StartingKubelet                      = "Starting"
    	KubeletSetupFailed                   = "KubeletSetupFailed"
    	FailedAttachVolume                   = "FailedAttachVolume"
    	FailedMountVolume                    = "FailedMount"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/httpresponse/httpresponse.go

    		if !isHTTPFuncOrMethodOnClient(pass.TypesInfo, call) {
    			return true // the function call is not related to this check.
    		}
    
    		// Find the innermost containing block, and get the list
    		// of statements starting with the one containing call.
    		stmts, ncalls := restOfBlock(stack)
    		if len(stmts) < 2 {
    			// The call to the http function is the last statement of the block.
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/server.go

    		socketName: name,
    		socketDir:  dir,
    		rhandler:   rh,
    		chandler:   ch,
    		clients:    make(map[string]Client),
    	}
    
    	return s, nil
    }
    
    func (s *server) Start() error {
    	klog.V(2).InfoS("Starting device plugin registration server")
    
    	if err := os.MkdirAll(s.socketDir, 0750); err != nil {
    		klog.ErrorS(err, "Failed to create the device plugin socket directory", "directory", s.socketDir)
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonConnector.java

            ProgressLogger progressLogger = progressLoggerFactory.newOperation(DefaultDaemonConnector.class)
                .start("Starting Gradle Daemon", "Starting Daemon");
            final DaemonStartupInfo startupInfo = daemonStarter.startDaemon(singleRun);
            LOGGER.debug("Started Gradle daemon {}", startupInfo);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top