Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 275 for Implementation (0.18 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		if lhs, ok := got.Underlying().(*types.Basic); ok {
    			return rhs.Info()&types.IsConstType == lhs.Info()&types.IsConstType
    		}
    	}
    	return types.AssignableTo(want, got)
    }
    
    // MakeReadFile returns a simple implementation of the Pass.ReadFile function.
    func MakeReadFile(pass *analysis.Pass) func(filename string) ([]byte, error) {
    	return func(filename string) ([]byte, error) {
    		if err := CheckReadable(pass, filename); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/net/http/socks_bundle.go

    // Code generated by golang.org/x/tools/cmd/bundle. DO NOT EDIT.
    //go:generate bundle -o socks_bundle.go -prefix socks golang.org/x/net/internal/socks
    
    // Package socks provides a SOCKS version 5 client implementation.
    //
    // SOCKS protocol version 5 is defined in RFC 1928.
    // Username/Password authentication for SOCKS version 5 is defined in
    // RFC 1929.
    //
    
    package http
    
    import (
    	"context"
    	"errors"
    	"io"
    	"net"
    	"strconv"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.s

    #define P8_STXVB16X(VS,RA,RB) \
    	STXVD2X VS, (RA+RB)
    
    #endif
    
    #define MASK_PTR   R8
    
    #define MASKV   V0
    #define INV     V1
    
    // The following macros are used for
    // the stitched implementation within
    // counterCryptASM.
    
    // Load the initial GCM counter value
    // in V30 and set up the counter increment
    // in V31
    #define SETUP_COUNTER \
    	P8_LXVB16X(COUNTER, R0, V30); \
    	VSPLTISB $1, V28; \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa_test.go

    			f(t, curve)
    		})
    	}
    }
    
    // genericParamsForCurve returns the dereferenced CurveParams for
    // the specified curve. This is used to avoid the logic for
    // upgrading a curve to its specific implementation, forcing
    // usage of the generic implementation.
    func genericParamsForCurve(c elliptic.Curve) *elliptic.CurveParams {
    	d := *(c.Params())
    	return &d
    }
    
    func TestKeyGeneration(t *testing.T) {
    	testAllCurves(t, testKeyGeneration)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. src/runtime/alg.go

    	return memhash(p, h, size)
    }
    
    // runtime variable to check if the processor we're running on
    // actually supports the instructions used by the AES-based
    // hash implementation.
    var useAeshash bool
    
    // in asm_*.s
    
    // memhash should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. 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)
  7. src/net/udpsock.go

    type addrPortUDPAddr struct {
    	netip.AddrPort
    }
    
    func (addrPortUDPAddr) Network() string { return "udp" }
    
    // UDPConn is the implementation of the Conn and PacketConn interfaces
    // for UDP network connections.
    type UDPConn struct {
    	conn
    }
    
    // SyscallConn returns a raw network connection.
    // This implements the syscall.Conn interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 16:58:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/pack/pack_test.go

    			testenv.SkipFlaky(t, 58806)
    		}
    		t.Fatalf("%v: %v\n%s", args, err, string(out))
    	}
    	return string(out)
    }
    
    // Fake implementation of files.
    
    var helloFile = &FakeFile{
    	name:     "hello",
    	contents: "hello world", // 11 bytes, an odd number.
    	mode:     0644,
    }
    
    var goodbyeFile = &FakeFile{
    	name:     "goodbye",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top