Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Reimplement (0.22 sec)

  1. src/cmd/cgo/doc.go

    system object code because cmd/link is not sophisticated enough to process
    the real code.
    
    The main benefits of this system are that cmd/link remains relatively simple
    (it does not need to implement a complete ELF and Mach-O linker) and
    that gcc is not needed after the package is compiled. For example,
    package net uses cgo for access to name resolution functions provided
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    <code>S1</code> and <code>S2</code> may have or share.
    </p>
    
    <p>
    A type implements any interface comprising any subset of its methods
    and may therefore implement several distinct interfaces. For
    instance, all types implement the <i>empty interface</i>:
    </p>
    
    <pre>
    interface{}
    </pre>
    
    <p>
    Similarly, consider this interface specification,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    		srcBuf.Reset()
    		src.Reset(srcBuf)
    		dstBuf.Reset()
    		io.Copy(dst, src)
    	}
    }
    
    func BenchmarkReaderCopyUnoptimal(b *testing.B) {
    	// Unoptimal case is where the underlying reader doesn't implement io.WriterTo
    	srcBuf := bytes.NewBuffer(make([]byte, 8192))
    	src := NewReader(onlyReader{srcBuf})
    	dstBuf := new(bytes.Buffer)
    	dst := onlyWriter{dstBuf}
    	for i := 0; i < b.N; i++ {
    		srcBuf.Reset()
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <code>S1</code> and <code>S2</code> may have or share.
    </p>
    
    <p>
    Every type that is a member of the type set of an interface implements that interface.
    Any given type may implement several distinct interfaces.
    For instance, all types implement the <i>empty interface</i> which stands for the set
    of all (non-interface) types:
    </p>
    
    <pre>
    interface{}
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  5. src/archive/tar/stat_unix.go

    			major := uint32((dev & 0x0000ff00) >> 8)
    			minor := uint32((dev & 0x000000ff) >> 0)
    			minor |= uint32((dev & 0xffff0000) >> 8)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		default:
    			// TODO: Implement solaris (see https://golang.org/issue/8106)
    		}
    	}
    	return nil
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    			prog.From = a[0]
    			if a[1].Type == obj.TYPE_REG {
    				prog.Reg = p.getRegister(prog, op, &a[1])
    			} else {
    				prog.AddRestSource(a[1])
    			}
    			prog.To = a[2]
    		default:
    			p.errorf("TODO: implement three-operand instructions for this architecture")
    			return
    		}
    	case 4:
    		if p.arch.Family == sys.ARM {
    			if arch.IsARMBFX(op) {
    				// a[0] and a[1] must be constants, a[2] and a[3] must be registers
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  7. src/bufio/example_test.go

    		fmt.Println(len(scanner.Bytes()) == 6)
    	}
    	if err := scanner.Err(); err != nil {
    		fmt.Fprintln(os.Stderr, "shouldn't see an error scanning a string")
    	}
    	// Output:
    	// true
    }
    
    // Use a Scanner to implement a simple word-count utility by scanning the
    // input as a sequence of space-delimited tokens.
    func ExampleScanner_words() {
    	// An artificial input source.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  8. doc/asm.html

    to hold temporary values.
    Hand-written assembly can use <code>R11</code>, but doing so requires
    being sure that the linker is not also using it to implement any of the other
    instructions in the function.
    </p>
    
    <p>
    When defining a <code>TEXT</code>, specifying frame size <code>$-4</code>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  9. api/go1.4.txt

    pkg image/png, type Encoder struct
    pkg image/png, type Encoder struct, CompressionLevel CompressionLevel
    
    # CL 101750048 math: implement Nextafter32, Robert Griesemer <******@****.***>
    pkg math, func Nextafter32(float32, float32) float32
    
    # CL 93550043 math/big: implement Rat.Float32, Robert Griesemer <******@****.***>
    pkg math/big, method (*Rat) Float32() (float32, bool)
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
Back to top