Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,386 for startm (0.22 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        File getDirectory();
    
        String getCommand();
    
        List<String> getArguments();
    
        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

            executor.start()
            try {
                executor.execute(action)
            } finally {
                executor.stop(timeout)
            }
        }
    
        /**
         * Starts a test thread that will run the given action. The action may define instants for later querying.
         */
        void start(Runnable action) {
            executor.execute(action)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	return s.lastEncryptRequest.Plaintext
    }
    
    // SetVersion sets the version of kms-plugin.
    func (s *Base64Plugin) SetVersion(ver string) {
    	s.ver = ver
    }
    
    // start starts plugin's gRPC service.
    func (s *Base64Plugin) start() error {
    	var err error
    	s.listener, err = net.Listen(unixProtocol, s.socketPath)
    	if err != nil {
    		return fmt.Errorf("failed to listen on the unix socket, error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphVisitor.java

    /**
     * Receives the result of dependency graph resolution, as a series of events.
     *
     * Implementations should make copies of whatever state they need to retain.
     */
    public interface DependencyGraphVisitor {
        /**
         * Starts traversal of the graph.
         */
        default void start(RootGraphNode root) {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/types.go

    	PodCgroupRoot string
    }
    
    // Manager evaluates when an eviction threshold for node stability has been met on the node.
    type Manager interface {
    	// Start starts the control loop to monitor eviction thresholds at specified interval.
    	Start(diskInfoProvider DiskInfoProvider, podFunc ActivePodsFunc, podCleanedUpFunc PodCleanedUpFunc, monitoringInterval time.Duration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    [19514] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

        TestResultProcessor processor = Mock(TestResultProcessor)
        StandardOutputRedirector redir = Mock(StandardOutputRedirector)
    
        @Subject redirector = new TestOutputRedirector(processor, redir)
    
        def "starts redirecting output and error"() {
            when:
            redirector.setOutputOwner("1")
            redirector.startRedirecting()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. releasenotes/notes/envoy-stats-proxy-admin-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 09:33:19 UTC 2024
    - 198 bytes
    - Viewed (0)
  9. cmd/tier-last-day-stats.go

    		merged.UpdatedAt = cm.UpdatedAt
    	}
    
    	for i := range cl.Bins {
    		merged.Bins[i] = cl.Bins[i].add(cm.Bins[i])
    	}
    
    	return merged
    }
    
    // DailyAllTierStats is used to aggregate last day tier stats across MinIO servers
    type DailyAllTierStats map[string]lastDayTierStats
    
    func (l DailyAllTierStats) merge(m DailyAllTierStats) {
    	for tier, st := range m {
    		l[tier] = l[tier].merge(st)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         */
        <T> T call(CallableBuildOperation<T> buildOperation);
    
        /**
         * Starts an operation that can be finished later.
         *
         * When a parent operation is finished any unfinished child operations will be failed.
         */
        BuildOperationContext start(BuildOperationDescriptor.Builder descriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top