Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,315 for stops (0.04 sec)

  1. src/cmd/go/testdata/script/mod_sumdb_proxy.txt

    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    env GOPROXY=$proxy/sumdb-404
    ! go get rsc.io/fortune@v1.0.0
    stderr 'verifying.*localhost.localdev'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    # proxy non-200/404/410 stops direct access
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    env GOPROXY=$proxy/sumdb-503
    ! go get rsc.io/fortune@v1.0.0
    stderr '503 Service Unavailable'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    rm go.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    	b21 := g2.Batch(trace.ThreadID(1), 3)
    	b21.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    	b21.Event("GoStart", trace.GoID(1), testgen.Seq(2))
    
    	// The goroutine starts running, then stops, then starts again.
    	b20 := g2.Batch(trace.ThreadID(0), 5)
    	b20.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b20.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunnable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. src/text/template/helper.go

    // the named files. The returned template's name will have the base name and
    // parsed contents of the first file. There must be at least one file.
    // If an error occurs, parsing stops and the returned *Template is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. test/recover1.go

    	// Sequential panic.
    	// Like test3, but changed recover to defer (same change as test4 → test5).
    	defer mustNotRecover()
    	defer func() {
    		defer recover()	// like a normal call from this func; runs because mustRecover stops the panic
    		defer mustRecover(3)
    		panic(3)
    	}()
    	panic(2)
    }
    
    func test7() {
    	// Like test6, but swapped defer order.
    	// The recover in "defer recover()" is now a no-op,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

            when: processor.completed("2", complete)
    
            then:
            1 * redirector.setOutputOwner("1")
            1 * target.completed("2", complete)
            0 * _
        }
    
        def "stops redirecting when suite is completed"() {
            def test = new DefaultTestDescriptor("2", "Bar", "Baz")
            def testEvent = new TestStartEvent(2, null)
            def complete = new TestCompleteEvent(1)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskSelectionIntegrationTest.groovy

            when:
            run "th"
    
            then:
            result.assertTasksExecuted(":a:thing", ":b:thing", ":a:a:thing", ":b:b:thing")
        }
    
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "stops traversing sub-projects when task implies sub-projects"() {
            createDirs("a", "b", "a/a", "b/b")
            settingsFile << "include 'a', 'b', 'a:a', 'b:b'"
    
            buildFile << """
                subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/lifecycle_signals.go

    	- the default value of 'ShutdownDelayDuration' is '70s'
    	- it's time to initiate shutdown of the HTTP Server, server.Shutdown is invoked
    	- as a consequene, the Close function has is called for all listeners
     	- the HTTP Server stops listening immediately
    	- any new request arriving on a new TCP socket is denied with
          a network error similar to 'connection refused'
        - the HTTP Server waits gracefully for existing requests to complete
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

        /**
         * <p>Requests that the daemon stop, but wait until the daemon is idle. The stop will happen asynchronously, and this method does not block.
         *
         * <p>The daemon will stop accepting new work, so that subsequent calls to {@link #runCommand} will fail with {@link DaemonUnavailableException}.
         */
        void requestStop(String reason);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/internal/trace/resources.go

    //
    // Transitions to and from states that are Executing are special in that
    // they change the future execution context. In other words, future events
    // on the same thread will feature the same goroutine until it stops running.
    //
    // Panics if d.Resource.Kind is not ResourceGoroutine.
    func (d StateTransition) Goroutine() (from, to GoState) {
    	if d.Resource.Kind != ResourceGoroutine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top