Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,367 for startm (0.33 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteInput.java

            this.file = file;
            bufferedInputStream = new ResettableBufferedInputStream(new RandomAccessFileInputStream(file));
        }
    
        /**
         * Starts reading from the given offset.
         */
        public DataInputStream start(long offset) throws IOException {
            file.seek(offset);
            bufferedInputStream.clear();
            countingInputStream = new CountingInputStream(bufferedInputStream);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServerConnector.java

     * <p>
     * A server connector should only be used by one daemon, and has a single use lifecycle.
     * Implementations must be threadsafe so that start/stop can be called from different threads.
     */
    public interface DaemonServerConnector extends Stoppable {
    
        /**
         * Starts accepting connections, passing any established connections to the given handler.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/runtime/traceevent.go

    	traceEvGoCreateBlocked // goroutine creation (starts blocked) [timestamp, new goroutine ID, new stack ID, stack ID]
    
    	// GoStatus with stack.
    	traceEvGoStatusStack // goroutine status at the start of a generation, with a stack [timestamp, goroutine ID, M ID, status, stack ID]
    
    	// Batch event for an experimental batch with a custom format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/status/testserver/server.go

    	for k, v := range handlers {
    		mux.HandleFunc(k, http.HandlerFunc(v))
    	}
    
    	// Start a local HTTP server
    	server := httptest.NewUnstartedServer(mux)
    
    	l, err := net.Listen("tcp", ":0")
    	if err != nil {
    		panic("Could not create listener for test: " + err.Error())
    	}
    	server.Listener = l
    	server.Start()
    	return server
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 26 17:53:14 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_pgo.txt

    go build -x -pgo=prof -o triv.exe triv.go
    stderr 'preprofile.*-i.*prof'
    stderr 'compile.*-pgoprofile=.*triv.go'
    
    # 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.
    go version -m triv.exe
    stdout 'build\s+-pgo=.*'${/}'prof'
    
    # store the build ID
    go list -export -json=BuildID -pgo=prof triv.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. pilot/pkg/server/instance.go

    type Instance interface {
    	// Start this Server. Any components that were already added
    	// will be run immediately. If any error is returned,
    	// Start will terminate and return the error immediately.
    	//
    	// Once all startup components have been run, starts a polling
    	// loop to continue monitoring for new components and returns nil.
    	Start(stop <-chan struct{}) error
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. pkg/envoy/agent.go

    	activeConnectionsURL := fmt.Sprintf("http://%s/stats?usedonly&filter=downstream_cx_active$", adminHost)
    	stats, err := http.DoHTTPGetWithTimeout(activeConnectionsURL, 2*time.Second)
    	if err != nil {
    		return -1, fmt.Errorf("unable to get listener stats from Envoy : %v", err)
    	}
    	if stats.Len() == 0 {
    		return -1, nil
    	}
    	activeConnections := 0
    	for stats.Len() > 0 {
    		line, _ := stats.ReadString('\n')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.process.ExecResult;
    
    public interface WorkerControl {
        /**
         * Starts the worker process, blocking until successfully started.
         */
        WorkerProcess start();
    
        /**
         * Requests that the worker complete all work and stop. Blocks until the worker process has stopped.
         */
        ExecResult stop();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/dra/types.go

    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/deployment/internal/DeploymentHandle.java

     */
    public interface DeploymentHandle {
        /**
         * Returns true if the deployment is still running.
         */
        boolean isRunning();
    
        /**
         * Starts the given deployment.
         * @param deployment the deployment to be started
         */
        void start(Deployment deployment);
    
        /**
         * Stops the deployment.
         */
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top