Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Hong (0.08 sec)

  1. src/cmd/internal/obj/s390x/a.out.go

    	C_LACON    // computed address, 32-bit displacement, possibly SP-relative
    	C_DACON    // computed address, 64-bit displacement?
    	C_SBRA     // short branch
    	C_LBRA     // long branch
    	C_SAUTO    // short auto
    	C_LAUTO    // long auto
    	C_ZOREG    // heap address, register-based, displacement == 0
    	C_SOREG    // heap address, register-based, int16 displacement
    	C_LOREG    // heap address, register-based, int32 displacement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    	if len(cmdOut) == 0 && cmdErr == nil {
    		// Common case
    		return nil
    	}
    	if len(cmdOut) == 0 && cmdErr != nil {
    		// Just return the error.
    		//
    		// TODO: This is what we've done for a long time, but it may be a
    		// mistake because it loses all of the extra context and results in
    		// ultimately less descriptive output. We should probably just take the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/vendor.go

    	"cmd/go/internal/str"
    
    	"golang.org/x/mod/module"
    )
    
    var cmdVendor = &base.Command{
    	UsageLine: "go mod vendor [-e] [-v] [-o outdir]",
    	Short:     "make vendored copy of dependencies",
    	Long: `
    Vendor resets the main module's vendor directory to include all packages
    needed to build and test all the main module's packages.
    It does not include test code for vendored packages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    		}
    
    	case TSTRUCT:
    		if m := t.StructType().Map; m != nil {
    			mt := m.MapType()
    			// Format the bucket struct for map[x]y as map.bucket[x]y.
    			// This avoids a recursive print that generates very long names.
    			switch t {
    			case mt.Bucket:
    				b.WriteString("map.bucket[")
    			default:
    				base.Fatalf("unknown internal map type")
    			}
    			tconv2(b, m.Key(), 0, mode, visited)
    			b.WriteByte(']')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		io.Copy(&errsb, r)
    	}()
    
    	// Give the program a chance to enter the function.
    	// If the program doesn't get there the test will still
    	// pass, although it doesn't quite test what we intended.
    	// This is fine as long as the program normally makes it.
    	time.Sleep(time.Millisecond)
    
    	cmd.Process.Signal(syscall.SIGSEGV)
    
    	err = cmd.Wait()
    
    	s := out.String()
    	if len(s) > 0 {
    		t.Log(s)
    	}
    	wg.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/query.go

    		// TagSum: if a tag is removed from some ancestor commit, the version may
    		// change from valid to invalid, but we're ok with keeping stale versions
    		// as long as they were valid at some point in the past.
    		//
    		// If the version did not successfully resolve, the origin may indicate
    		// a TagSum and/or RepoSum instead of a Hash, in which case we still need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    The standard C numeric types are available under the names
    C.char, C.schar (signed char), C.uchar (unsigned char),
    C.short, C.ushort (unsigned short), C.int, C.uint (unsigned int),
    C.long, C.ulong (unsigned long), C.longlong (long long),
    C.ulonglong (unsigned long long), C.float, C.double,
    C.complexfloat (complex float), and C.complexdouble (complex double).
    The C type void* is represented by Go's unsafe.Pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/test2json.go

    // calling part(x) for sections of the line. The line will be split at UTF8 boundaries,
    // and the final call to part for a long line includes the final newline.
    type lineBuffer struct {
    	b    []byte       // buffer
    	mid  bool         // whether we're in the middle of a long line
    	line func([]byte) // line callback
    	part func([]byte) // partial line callback
    }
    
    // write writes b to the buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    // license that can be found in the LICENSE file.
    
    package help
    
    import "cmd/go/internal/base"
    
    var HelpC = &base.Command{
    	UsageLine: "c",
    	Short:     "calling between Go and C",
    	Long: `
    There are two different ways to call between Go and C/C++ code.
    
    The first is the cgo tool, which is part of the Go distribution. For
    information on how to use it see the cgo documentation (go doc cmd/cgo).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/internal/moddeps/moddeps_test.go

    	"golang.org/x/mod/module"
    )
    
    // TestAllDependencies ensures dependencies of all
    // modules in GOROOT are in a consistent state.
    //
    // In short mode, it does a limited quick check and stops there.
    // In long mode, it also makes a copy of the entire GOROOT tree
    // and requires network access to perform more thorough checks.
    // Keep this distinction in mind when adding new checks.
    //
    // See issues 36852, 41409, and 43687.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top