Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 202 for Implementation (0.16 sec)

  1. src/html/template/js.go

    }
    
    var jsonMarshalType = reflect.TypeFor[json.Marshaler]()
    
    // indirectToJSONMarshaler returns the value, after dereferencing as many times
    // as necessary to reach the base type (or nil) or an implementation of json.Marshal.
    func indirectToJSONMarshaler(a any) any {
    	// text/template now supports passing untyped nil as a func call
    	// argument, so we must support it. Otherwise we'd panic below, as one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    // This is an optimized implementation of AES-GCM using AES-NI and CLMUL-NI
    // The implementation uses some optimization as described in:
    // [1] Gueron, S., Kounavis, M.E.: Intel® Carry-Less Multiplication
    //     Instruction and its Usage for Computing the GCM Mode rev. 2.02
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/runtime/HACKING.md

    `go:nowritebarrierrec` function and produces an error if it encounters
    a function containing a write barrier. This flood stops at
    `go:yeswritebarrierrec` functions.
    
    `go:nowritebarrierrec` is used in the implementation of the write
    barrier to prevent infinite loops.
    
    Both directives are used in the scheduler. The write barrier requires
    an active P (`getg().m.p != nil`) and scheduler code often runs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/go/types/signature.go

    func (t *Signature) Underlying() Type { return t }
    func (t *Signature) String() string   { return TypeString(t, nil) }
    
    // ----------------------------------------------------------------------------
    // Implementation
    
    // funcType type-checks a function or method type.
    func (check *Checker) funcType(sig *Signature, recvPar *ast.FieldList, ftyp *ast.FuncType) {
    	check.openScope(ftyp, "function")
    	check.scope.isFunc = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. src/crypto/aes/aes_test.go

    // Appendix A of FIPS 197: Key expansion examples
    type KeyTest struct {
    	key []byte
    	enc []uint32
    	dec []uint32 // decryption expansion; not in FIPS 197, computed from C implementation.
    }
    
    var keyTests = []KeyTest{
    	{
    		// A.1.  Expansion of a 128-bit Cipher Key
    		[]byte{0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c},
    		[]uint32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/keccakf.go

    	0x0000000080000001,
    	0x8000000080008008,
    }
    
    // keccakF1600 applies the Keccak permutation to a 1600b-wide
    // state represented as a slice of 25 uint64s.
    func keccakF1600(a *[25]uint64) {
    	// Implementation translated from Keccak-inplace.c
    	// in the keccak reference code.
    	var t, bc0, bc1, bc2, bc3, bc4, d0, d1, d2, d3, d4 uint64
    
    	for i := 0; i < 24; i += 4 {
    		// Combines the 5 steps in each round into 2 steps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/nettest/conntest.go

    // net.Listener (if there is one), and should not be nil.
    type MakePipe func() (c1, c2 net.Conn, stop func(), err error)
    
    // TestConn tests that a net.Conn implementation properly satisfies the interface.
    // The tests should not produce any false positives, but may experience
    // false negatives. Thus, some issues may only be detected when the test is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/regexp/onepass.go

    }
    
    func iop(i *syntax.Inst) syntax.InstOp {
    	op := i.Op
    	switch op {
    	case syntax.InstRune1, syntax.InstRuneAny, syntax.InstRuneAnyNotNL:
    		op = syntax.InstRune
    	}
    	return op
    }
    
    // Sparse Array implementation is used as a queueOnePass.
    type queueOnePass struct {
    	sparse          []uint32
    	dense           []uint32
    	size, nextIndex uint32
    }
    
    func (q *queueOnePass) empty() bool {
    	return q.nextIndex >= q.size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy.go

    	// called without any call to ModifyResponse.
    	//
    	// If ModifyResponse returns an error, ErrorHandler is called
    	// with its error value. If ErrorHandler is nil, its default
    	// implementation is used.
    	ModifyResponse func(*http.Response) error
    
    	// ErrorHandler is an optional function that handles errors
    	// reaching the backend or errors from ModifyResponse.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/runtime/race_amd64.s

    	GO_ARGS
    	JMP	sync∕atomic·CompareAndSwapInt64(SB)
    
    TEXT	sync∕atomic·CompareAndSwapUintptr(SB), NOSPLIT, $0-25
    	GO_ARGS
    	JMP	sync∕atomic·CompareAndSwapInt64(SB)
    
    // Generic atomic operation implementation.
    // AX already contains target function.
    TEXT	racecallatomic<>(SB), NOSPLIT|NOFRAME, $0-0
    	// Trigger SIGSEGV early.
    	MOVQ	16(SP), R12
    	MOVBLZX	(R12), R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top