Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for account_id (0.57 sec)

  1. src/archive/tar/writer.go

    	// See https://golang.org/issue/22735
    	/*
    		// Write the sparse map and setup the sparse writer if necessary.
    		if len(spd) > 0 {
    			// Use tw.curr since the sparse map is accounted for in hdr.Size.
    			if _, err := tw.curr.Write(spb); err != nil {
    				return err
    			}
    			tw.curr = &sparseFileWriter{tw.curr, spd, 0}
    		}
    	*/
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    		// arguments from C to Go. The C and Go definitions
    		// just have to agree. The gcc struct will be compiled
    		// with __attribute__((packed)) so all padding must be
    		// accounted for explicitly.
    		ctype := "struct {\n"
    		gotype := new(bytes.Buffer)
    		fmt.Fprintf(gotype, "struct {\n")
    		off := int64(0)
    		npad := 0
    		argField := func(typ ast.Expr, namePat string, args ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top