Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for srcbuf (0.35 sec)

  1. src/cmd/internal/obj/x86/seh.go

    	"fmt"
    	"math"
    )
    
    type sehbuf struct {
    	ctxt *obj.Link
    	data []byte
    	off  int
    }
    
    func newsehbuf(ctxt *obj.Link, nodes uint8) sehbuf {
    	// - 8 bytes for the header
    	// - 2 bytes for each node
    	// - 2 bytes in case nodes is not even
    	size := 8 + nodes*2
    	if nodes%2 != 0 {
    		size += 2
    	}
    	return sehbuf{ctxt, make([]byte, size), 0}
    }
    
    func (b *sehbuf) write8(v uint8) {
    	b.data[b.off] = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/encoding/hex/hex_test.go

    			}
    
    			dec := NewDecoder(&buf)
    			var decBuf bytes.Buffer
    			w := struct{ io.Writer }{&decBuf} // io.Writer only; not io.ReaderFrom
    			if _, err := io.CopyBuffer(w, dec, make([]byte, 7)); err != nil || decBuf.Len() != len(input) {
    				t.Errorf("decoder.Read(%q*%d) = (%d, %v), want (%d, nil)", test.enc, multiplier, decBuf.Len(), err, len(input))
    			}
    
    			if !bytes.Equal(decBuf.Bytes(), input) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. test/linkx_run.go

    	cmd := exec.Command("go", "run", "-ldflags=-X main.tbd"+sep+"hello -X main.overwrite"+sep+"trumped -X main.nosuchsymbol"+sep+"neverseen", "linkx.go")
    	var out, errbuf bytes.Buffer
    	cmd.Stdout = &out
    	cmd.Stderr = &errbuf
    	err := cmd.Run()
    	if err != nil {
    		fmt.Println(errbuf.String())
    		fmt.Println(out.String())
    		fmt.Println(err)
    		os.Exit(1)
    	}
    
    	want := "hello\nhello\nhello\ntrumped\ntrumped\ntrumped\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/ld.go

     */
    func addlibpath(ctxt *Link, srcref, objref, file, pkg, shlib string, fingerprint goobj.FingerprintType) *sym.Library {
    	if l := ctxt.LibraryByPkg[pkg]; l != nil {
    		return l
    	}
    
    	if ctxt.Debugvlog > 1 {
    		ctxt.Logf("addlibpath: srcref: %s objref: %s file: %s pkg: %s shlib: %s fingerprint: %x\n", srcref, objref, file, pkg, shlib, fingerprint)
    	}
    
    	l := &sym.Library{}
    	ctxt.LibraryByPkg[pkg] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. src/net/rpc/client.go

    // concurrently so the implementation of conn should protect against
    // concurrent reads or concurrent writes.
    func NewClient(conn io.ReadWriteCloser) *Client {
    	encBuf := bufio.NewWriter(conn)
    	client := &gobClientCodec{conn, gob.NewDecoder(conn), gob.NewEncoder(encBuf), encBuf}
    	return NewClientWithCodec(client)
    }
    
    // NewClientWithCodec is like [NewClient] but uses the specified
    // codec to encode requests and decode responses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. istioctl/pkg/install/k8sversion/version_test.go

    			isValid: true,
    		},
    	}
    
    	var outBuf bytes.Buffer
    	var errBuf bytes.Buffer
    
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %s", i, c.version), func(t *testing.T) {
    			k8sClient := kube.NewFakeClient()
    			k8sClient.Kube().Discovery().(*fakediscovery.FakeDiscovery).FakedServerVersion = c.version
    
    			logger := clog.NewConsoleLogger(&outBuf, &errBuf, nil)
    			IsK8VersionSupported(k8sClient, logger)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 02:46:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. maven-xml-impl/src/test/java/org/apache/maven/internal/xml/XmlNodeBuilderTest.java

            String doc = "<?xml version='1.0'?><doc><child>foo</child></doc>";
            StringReader r = new StringReader(doc + doc) {
                @Override
                public int read(char[] cbuf, int off, int len) throws IOException {
                    return super.read(cbuf, off, 1);
                }
            };
            XmlNode node1 = XmlNodeBuilder.build(r);
            XmlNode node2 = XmlNodeBuilder.build(r);
            assertEquals(node1, node2);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/internal/poll/fd_windows_test.go

    	ConnectionTimeMs  uint64
    	TimestampsEnabled bool
    	RttUs             uint32
    	MinRttUs          uint32
    	BytesInFlight     uint32
    	Cwnd              uint32
    	SndWnd            uint32
    	RcvWnd            uint32
    	RcvBuf            uint32
    	BytesOut          uint64
    	BytesIn           uint64
    	BytesReordered    uint32
    	BytesRetrans      uint32
    	FastRetrans       uint32
    	DupAcksIn         uint32
    	TimeoutEpisodes   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 08:33:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerConsoleInputEndUserIntegrationTest.groovy

                def stdout = new java.io.Writer() {
                    def buffer = new StringBuilder()
                    def written = false
    
                    void write(char[] cbuf, int off, int len) {
                        buffer.append(cbuf, off, len)
                        if (!written && buffer.toString().contains('$PROMPT')) {
                            written = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	I_STR     = 0x5308
    	I_POP     = 0x5303
    	I_PUSH    = 0x5302
    	I_LINK    = 0x530c
    	I_UNLINK  = 0x530d
    	I_PLINK   = 0x5316
    	I_PUNLINK = 0x5317
    
    	IF_UNITSEL = -0x7ffb8cca
    )
    
    type strbuf struct {
    	Maxlen int32
    	Len    int32
    	Buf    *int8
    }
    
    type Strioctl struct {
    	Cmd    int32
    	Timout int32
    	Len    int32
    	Dp     *int8
    }
    
    type Lifreq struct {
    	Name   [32]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top