Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,571 for continued (0.15 sec)

  1. src/net/textproto/reader.go

    func (r *Reader) ReadResponse(expectCode int) (code int, message string, err error) {
    	code, continued, message, err := r.readCodeLine(expectCode)
    	multi := continued
    	for continued {
    		line, err := r.ReadLine()
    		if err != nil {
    			return 0, "", err
    		}
    
    		var code2 int
    		var moreMessage string
    		code2, continued, moreMessage, err = parseCodeLine(line, 0)
    		if err != nil || code2 != code {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/siginfo_linux.go

    	_CLD_DUMPED          = 3
    	_CLD_TRAPPED         = 4
    	_CLD_STOPPED         = 5
    	_CLD_CONTINUED       = 6
    
    	// These are the same as in syscall/syscall_linux.go.
    	core      = 0x80
    	stopped   = 0x7f
    	continued = 0xffff
    )
    
    // WaitStatus converts SiginfoChild, as filled in by the waitid syscall,
    // to syscall.WaitStatus.
    func (s *SiginfoChild) WaitStatus() (ws syscall.WaitStatus) {
    	switch s.Code {
    	case _CLD_EXITED:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. releasenotes/notes/46901.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 43312
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 17:53:29 UTC 2023
    - 227 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/logging/DefaultBuildOperationLoggerTest.groovy

    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    Finished <testTask>, see full log $pathToLogStr.
    """
        }
    
        def "logs continued message at end of overall operation"() {
            when:
            log.start()
            10.times { log.operationFailed("<operation>", "<output>") }
            log.done()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcshared/testdata/libgo4/libgo4.go

    //
    //export TestSEGV
    func TestSEGV() {
    	defer func() {
    		if recover() == nil {
    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 864 bytes
    - Viewed (0)
  6. docs/en/docs/deployment/cloud.md

    ## Cloud Providers - Sponsors
    
    Some cloud providers ✨ [**sponsor FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, this ensures the continued and healthy **development** of FastAPI and its **ecosystem**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jan 31 22:13:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/os/exec_posix.go

    		res = "stop signal: " + status.StopSignal().String()
    		if status.StopSignal() == syscall.SIGTRAP && status.TrapCause() != 0 {
    			res += " (trap " + itoa.Itoa(status.TrapCause()) + ")"
    		}
    	case status.Continued():
    		res = "continued"
    	}
    	if status.CoreDump() {
    		res += " (core dumped)"
    	}
    	return res
    }
    
    // ExitCode returns the exit code of the exited process, or -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/cgo.go

    				if done {
    					ping <- true
    					return
    				}
    				ping <- true
    			default:
    			}
    			func() {
    				defer func() {
    					recover()
    				}()
    				var s *string
    				*s = ""
    				fmt.Printf("continued after expected panic\n")
    			}()
    		}
    	}()
    	time.Sleep(time.Millisecond)
    	start := time.Now()
    	var times []time.Duration
    	n := 64
    	if os.Getenv("RUNTIME_TEST_SHORT") != "" {
    		n = 16
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 13:20:27 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    //
    //export TestSEGV
    func TestSEGV() {
    	defer func() {
    		if recover() == nil {
    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    // Noop ensures that the Go runtime is initialized.
    //
    //export Noop
    func Noop() {
    }
    
    // Raise SIGPIPE.
    //
    //export GoRaiseSIGPIPE
    func GoRaiseSIGPIPE() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/math/big/example_rat_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package big_test
    
    import (
    	"fmt"
    	"math/big"
    )
    
    // Use the classic continued fraction for e
    //
    //	e = [1; 0, 1, 1, 2, 1, 1, ... 2n, 1, 1, ...]
    //
    // i.e., for the nth term, use
    //
    //	   1          if   n mod 3 != 1
    //	(n-1)/3 * 2   if   n mod 3 == 1
    func recur(n, lim int64) *big.Rat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top