Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,261 for startm (0.12 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/StandardOutputCapture.java

    package org.gradle.internal.logging;
    
    public interface StandardOutputCapture {
        /**
         * Starts redirection of System.out and System.err to the Gradle logging system.
         *
         * @return this
         */
        StandardOutputCapture start();
    
        /**
         * Restores System.out and System.err to the values they had before {@link #start()} has been called.
         *
         * @return this
         */
        StandardOutputCapture stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_json.txt

    stdout '"Action":"skip","Package":"m/skipper","Test":"Test"'
    
    # Check that starts were ordered properly.
    stdout '(?s)"Action":"start","Package":"errors".*"Action":"start","Package":"m/empty/pkg".*"Action":"start","Package":"m/skipper"'
    
    # Run go test -json on errors and check it's cached
    go test -json -short -v errors
    stdout '"Action":"output","Package":"errors","Output":".*\(cached\)'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildGateIntegrationTest.groovy

                    ${server.callFromBuild("pending")}
                } as ${PendingChangesListener.canonicalName})
    
                task work(type: SimpleTask)
            """
    
            file("input.txt").text = "start"
        }
    
        def "build only starts when gate is opened"() {
            server.expect(server.get("command").send("close"))
            def command = server.expectAndBlock(server.get("command").send("open"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/packaging/deb/init.d/fess

    ### BEGIN INIT INFO
    # Provides:          fess
    # Required-Start:    $network $remote_fs $named
    # Required-Stop:     $network $remote_fs $named
    # Default-Start:     2 3 4 5
    # Default-Stop:      0 1 6
    # Short-Description: Starts fess
    # Description:       Starts fess using start-stop-daemon
    ### END INIT INFO
    
    PATH=/bin:/usr/bin:/sbin:/usr/sbin
    NAME=fess
    DESC="Fess Server"
    DEFAULT=/etc/default/$NAME
    
    if [ `id -u` -ne 0 ]; then
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/cc/training/queue_runner.h

      ~QueueRunner();
    
      /// Starts the queue runner with the given session.
      Status Start(Session* sess);
    
      /// Starts the queue runner with the given session and sets the run arguments
      /// for sess->Run. It also collects and stores the cost model.
      Status StartAndCollectCostGraph(Session* sess,
                                      const RunOptions& run_options = RunOptions());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 18:27:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"protocol", "transport", "stage"},
    	)
    
    	legacyregistry.MustRegister(starts)
    	legacyregistry.MustRegister(latencies)
    	legacyregistry.MustRegister(failures)
    	return &DialMetrics{starts: starts, latencies: latencies, failures: failures, clock: clock.RealClock{}}
    }
    
    // Clock returns the clock.
    func (m *DialMetrics) Clock() clock.Clock {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/StandardOutputRedirector.java

    public interface StandardOutputRedirector {
    
        /**
         * Starts redirection of System.out and System.err to the listener attached to
         * {@link #redirectStandardErrorTo(OutputListener)} and
         * {@link #redirectStandardOutputTo(OutputListener)
         */
        void start();
    
        /**
         * Restores System.out and System.err to the values they had before {@link #start()} has been called.
         */
        void stop();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    	g.Start(func() {
    		f(stopCh)
    	})
    }
    
    // StartWithContext starts f in a new goroutine in the group.
    // ctx is passed to f as an argument. f should stop when ctx.Done() is available.
    func (g *Group) StartWithContext(ctx context.Context, f func(context.Context)) {
    	g.Start(func() {
    		f(ctx)
    	})
    }
    
    // Start starts f in a new goroutine in the group.
    func (g *Group) Start(f func()) {
    	g.wg.Add(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. src/packaging/rpm/init.d/fess

    #!/bin/sh
    #
    # fess <summary>
    #
    # chkconfig:   2345 80 20
    # description: Starts and stops a single fess instance on this system 
    #
    
    ### BEGIN INIT INFO
    # Provides: Fess
    # Required-Start: $network $named
    # Required-Stop: $network $named
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Short-Description: This service manages the fess daemon
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

        /**
         * Collects whatever state is required the given process. Should not start work.
         */
        void connectStreams(Process process, String processName, Executor executor);
    
        /**
         * Starts reading/writing/whatever the process' streams. May block until the streams reach some particular state, e.g. indicate that the process has started successfully.
         */
        void start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top