Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for transform (0.25 sec)

  1. src/cmd/cgo/doc.go

    to auto-update code from Go 1.14 and earlier:
    
    	go tool fix -r eglconf <pkg>
    
    # Using cgo directly
    
    Usage:
    
    	go tool cgo [cgo options] [-- compiler options] gofiles...
    
    Cgo transforms the specified input Go source files into several output
    Go and C source files.
    
    The compiler options are passed through uninterpreted when
    invoking the C compiler to compile the C parts of the package.
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg net/http, method (*Transport) Clone() *Transport
    pkg net/http, type Server struct, BaseContext func(net.Listener) context.Context
    pkg net/http, type Server struct, ConnContext func(context.Context, net.Conn) context.Context
    pkg net/http, type Transport struct, ForceAttemptHTTP2 bool
    pkg net/http, type Transport struct, ReadBufferSize int
    pkg net/http, type Transport struct, WriteBufferSize int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg net/http, type Response struct, TLS *tls.ConnectionState
    pkg net/http, type Server struct, ConnState func(net.Conn, ConnState)
    pkg net/http, type Server struct, ErrorLog *log.Logger
    pkg net/http, type Transport struct, TLSHandshakeTimeout time.Duration
    pkg regexp/syntax, method (*Inst) MatchRunePos(int32) int
    pkg regexp/syntax, method (InstOp) String() string
    pkg runtime/debug, func SetPanicOnFault(bool) bool
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    			if data == endOfRow {
    				continue RowLoop
    			}
    			row[x] = data + bias(x, y)
    		}
    	}
    </pre>
    
    <h3 id="Goto_statements">Goto statements</h3>
    
    <p>
    A "goto" statement transfers control to the statement with the corresponding label
    within the same function.
    </p>
    
    <pre class="ebnf">
    GotoStmt = "goto" Label .
    </pre>
    
    <pre>
    goto Error
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. PATENTS

    Google hereby grants to You a perpetual, worldwide, non-exclusive,
    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Dec 06 21:31:59 GMT 2010
    - 1.3K bytes
    - Viewed (0)
  6. doc/go_spec.html

    			if data == endOfRow {
    				continue RowLoop
    			}
    			row[x] = data + bias(x, y)
    		}
    	}
    </pre>
    
    <h3 id="Goto_statements">Goto statements</h3>
    
    <p>
    A "goto" statement transfers control to the statement with the corresponding label
    within the same function.
    </p>
    
    <pre class="ebnf">
    GotoStmt = "goto" Label .
    </pre>
    
    <pre>
    goto Error
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg net/http, method (*Transport) CancelRequest(*Request)
    pkg net/http, type CloseNotifier interface { CloseNotify }
    pkg net/http, type CloseNotifier interface, CloseNotify() <-chan bool
    pkg net/http, type Request struct, PostForm url.Values
    pkg net/http, type Server struct, TLSNextProto map[string]func(*Server, *tls.Conn, Handler)
    pkg net/http, type Transport struct, ResponseHeaderTimeout time.Duration
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  8. api/go1.7.txt

    pkg net/http, type Response struct, Uncompressed bool
    pkg net/http, type Transport struct, DialContext func(context.Context, string, string) (net.Conn, error)
    pkg net/http, type Transport struct, IdleConnTimeout time.Duration
    pkg net/http, type Transport struct, MaxIdleConns int
    pkg net/http, type Transport struct, MaxResponseHeaderBytes int64
    pkg net/http, var ErrUseLastResponse error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64.s

    	SUB	$-2047, X5				// 9382f27f
    	SUB	$2048, X5				// 93820280
    
    	SRA	X6, X5, X7				// b3d36240
    	SRA	X5, X6					// 33535340
    	SRA	$1, X5, X6				// 13d31240
    	SRA	$1, X5					// 93d21240
    
    	// 2.5: Control Transfer Instructions
    	JAL	X5, 2(PC)				// ef028000
    	JALR	X6, (X5)				// 67830200
    	JALR	X6, 4(X5)				// 67834200
    	BEQ	X5, X6, 2(PC)				// 63846200
    	BNE	X5, X6, 2(PC)				// 63946200
    	BLT	X5, X6, 2(PC)				// 63c46200
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  10. api/go1.11.txt

    pkg net/http, const StatusMisdirectedRequest = 421
    pkg net/http, const StatusMisdirectedRequest ideal-int
    pkg net/http, type Cookie struct, SameSite SameSite
    pkg net/http, type SameSite int
    pkg net/http, type Transport struct, MaxConnsPerHost int
    pkg net/http/httptrace, type ClientTrace struct, Got1xxResponse func(int, textproto.MIMEHeader) error
    pkg net/http/httptrace, type ClientTrace struct, WroteHeaderField func(string, []string)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
Back to top