Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for original (0.26 sec)

  1. src/cmd/go/internal/load/pkg.go

    	CompiledImports   []string             // additional Imports necessary when using CompiledGoFiles (all from standard library); 1:1 with the end of PackagePublic.Imports
    	RawImports        []string             // this package's original imports as they appear in the text of the program; 1:1 with the end of PackagePublic.Imports
    	ForceLibrary      bool                 // this package is a library (even if named "main")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	// or clear those deadlines as needed.
    	//
    	// The returned bufio.Reader may contain unprocessed buffered
    	// data from the client.
    	//
    	// After a call to Hijack, the original Request.Body must not
    	// be used. The original Request's Context remains valid and
    	// is not canceled until the Request's ServeHTTP method
    	// returns.
    	Hijack() (net.Conn, *bufio.ReadWriter, error)
    }
    
    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/cmd/go/alldocs.go

    //
    //	-run=""
    //		if non-empty, specifies a regular expression to select
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    //		expression.
    //
    //	-skip=""
    //		if non-empty, specifies a regular expression to suppress
    //		directives whose full original source text (excluding
    //		any trailing spaces and final newline) matches the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	DF_1_NOKSYMS DynFlag1 = 0x00080000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NOHDR DynFlag1 = 0x00100000
    	// Indicates that this object has been edited or has been modified since the
    	// objects original construction by the link-editor.
    	DF_1_EDITED DynFlag1 = 0x00200000
    	// Reserved for internal use by the kernel runtime-linker.
    	DF_1_NORELOC DynFlag1 = 0x00400000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    				// than the old cmd/internal/obj/i386 code did,
    				// which breaks our "same bits out" checks.
    				// In particular, CMPB AX, $0 encodes as 80 f8 00
    				// in the original obj/i386, and it would encode
    				// (using a valid, shorter form) as 3c 00 if we enabled
    				// the call to bytereg here.
    				if ctxt.Arch.Family == sys.AMD64 {
    					bytereg(&p.From, &p.Ft)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// after exitsyscall makes sure it is okay to be
    	// running at all (that is, there's no garbage collection
    	// running right now).
    	mp.needextram = last
    
    	// Store the original signal mask for use by minit.
    	mp.sigmask = sigmask
    
    	// Install TLS on some platforms (previously setg
    	// would do this if necessary).
    	osSetupTLS(mp)
    
    	// Install g (= m->g0) and set the stack bounds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    		}
    		o1 = AOP_MD(c.opirr(p.As), uint32(p.To.Reg), uint32(p.Reg), sh, a)
    
    	case 30: /* rldimi $sh,s,$mask,a */
    		sh := uint32(c.regoff(&p.From))
    		d := c.vregoff(p.GetFrom3())
    
    		// Original opcodes had mask operands which had to be converted to a shift count as expected by
    		// the ppc64 asm.
    		switch p.As {
    		case ARLDMI, ARLDMICC:
    			mb, me, valid := decodeMask64(d)
    			if me != (63-sh) || !valid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (BitRev32 ...) => (RBITW ...)
    (BitRev16   x) => (SRLconst [48] (RBIT <typ.UInt64> x))
    (BitRev8    x) => (SRLconst [56] (RBIT <typ.UInt64> x))
    
    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    		}))
    		defer proxy.close()
    
    		req, _ := NewRequest("POST", proxy.ts.URL, io.LimitReader(neverEnding('a'), bodySize))
    		res, err := proxy.c.Do(req)
    		if err != nil {
    			return fmt.Errorf("original request: %v", err)
    		}
    		res.Body.Close()
    		return nil
    	})
    }
    
    // Test that a hanging Request.Body.Read from another goroutine can't
    // cause the Handler goroutine's Request.Body.Close to block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file was originally from https://golang.org/cl/24717 by Vlad Krasnov of CloudFlare.
    
    //go:build gc && !purego
    
    #include "textflag.h"
    // General register allocation
    #define oup DI
    #define inp SI
    #define inl BX
    #define adp CX // free to reuse, after we hash the additional data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top