Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for Ordinary (0.15 sec)

  1. src/os/exec/exec_test.go

    			return
    		}
    	}
    }
    
    // TestMain allows the test binary to impersonate many other binaries,
    // some of which may manipulate os.Stdin, os.Stdout, and/or os.Stderr
    // (and thus cannot run as an ordinary Test function, since the testing
    // package monkey-patches those variables before running tests).
    func TestMain(m *testing.M) {
    	flag.Parse()
    
    	pid := os.Getpid()
    	if os.Getenv("GO_EXEC_TEST_PID") == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	case *body:
    		return v.bodyRemains()
    	default:
    		panic("unexpected type " + fmt.Sprintf("%T", rc))
    	}
    }
    
    // The HandlerFunc type is an adapter to allow the use of
    // ordinary functions as HTTP handlers. If f is a function
    // with the appropriate signature, HandlerFunc(f) is a
    // [Handler] that calls f.
    type HandlerFunc func(ResponseWriter, *Request)
    
    // ServeHTTP calls f(w, r).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    		return false
    	}
    
    	name := sf.name()
    
    	// Special case: always show runtime.gopanic frame
    	// in the middle of a stack trace, so that we can
    	// see the boundary between ordinary code and
    	// panic-induced deferred code.
    	// See golang.org/issue/5832.
    	if name == "runtime.gopanic" && !firstFrame {
    		return true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    #include "funcdata.h"
    #include "textflag.h"
    #include "cgo/abi_amd64.h"
    
    // _rt0_amd64 is common startup code for most amd64 systems when using
    // internal linking. This is the entry point for the program from the
    // kernel for an ordinary -buildmode=exe program. The stack holds the
    // number of arguments and the C-style argv.
    TEXT _rt0_amd64(SB),NOSPLIT,$-8
    	MOVQ	0(SP), DI	// argc
    	LEAQ	8(SP), SI	// argv
    	JMP	runtime·rt0_go(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/testing/testing.go

    //	func TestMain(m *testing.M) {
    //		// call flag.Parse() here if TestMain uses flags
    //		os.Exit(m.Run())
    //	}
    //
    // TestMain is a low-level primitive and should not be necessary for casual
    // testing needs, where ordinary test functions suffice.
    package testing
    
    import (
    	"bytes"
    	"errors"
    	"flag"
    	"fmt"
    	"internal/goexperiment"
    	"internal/race"
    	"io"
    	"math/rand"
    	"os"
    	"reflect"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	tg := testgo(t)
    	tg.parallel()
    	defer tg.cleanup()
    
    	tg.tempFile("src/dir/x/x.go", `package x
    		var X int
    	`)
    	tg.setenv("GOPATH", tg.path("."))
    	tg.run("build", "dir/x")
    
    	// Ordinary import should work.
    	tg.tempFile("src/dir/p0/p.go", `package p0
    		import "dir/x"
    		var _ = x.X
    	`)
    	tg.run("build", "dir/p0")
    
    	// Relative import should not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    				return err
    			}
    			objects = append(objects, ofiles...)
    		}
    	}
    
    	// NOTE(rsc): On Windows, it is critically important that the
    	// gcc-compiled objects (cgoObjects) be listed after the ordinary
    	// objects in the archive. I do not know why this is.
    	// https://golang.org/issue/2601
    	objects = append(objects, cgoObjects...)
    
    	// Add system object files.
    	for _, syso := range p.SysoFiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    embedded field in a struct <code>x</code> is called <i>promoted</i> if
    <code>x.f</code> is a legal <a href="#Selectors">selector</a> that denotes
    that field or method <code>f</code>.
    </p>
    
    <p>
    Promoted fields act like ordinary fields
    of a struct except that they cannot be used as field names in
    <a href="#Composite_literals">composite literals</a> of the struct.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // module if it is at 'go 1.17' or higher, or all transitively-required modules
    // if at 'go 1.16' or lower.
    //
    // The go command will automatically download modules as needed during ordinary
    // execution. The "go mod download" command is useful mainly for pre-filling
    // the local cache or to compute the answers for a Go module proxy.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. CREDITS

    be placed in a text file included with all distributions of the Covered
    Software under this License. Except to the extent prohibited by statute
    or regulation, such description must be sufficiently detailed for a
    recipient of ordinary skill to be able to understand it.
    
    5. Termination
    --------------
    
    5.1. The rights granted under this License will terminate automatically
    if You fail to comply with any of its terms. However, if You become
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top