Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s

    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips || mipsle) && gc
    
    #include "textflag.h"
    
    //
    // System calls for mips, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-28
    	JMP syscall·Syscall(SB)
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-40
    	JMP syscall·Syscall6(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/testing/run_example.go

    // license that can be found in the LICENSE file.
    
    //go:build !js && !wasip1
    
    // TODO(@musiol, @odeke-em): re-unify this entire file back into
    // example.go when js/wasm gets an os.Pipe implementation
    // and no longer needs this separation.
    
    package testing
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"strings"
    	"time"
    )
    
    func runExample(eg InternalExample) (ok bool) {
    	if chatty.on {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/scalar.go

    //
    // The zero value is a valid zero element.
    type Scalar struct {
    	// s is the scalar in the Montgomery domain, in the format of the
    	// fiat-crypto implementation.
    	s fiatScalarMontgomeryDomainFieldElement
    }
    
    // The field implementation in scalar_fiat.go is generated by the fiat-crypto
    // project (https://github.com/mit-plv/fiat-crypto) at version v0.0.9 (23d2dbc)
    // from a formally verified model.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testgodefs/testdata/main.go

    var _ = Issue48396{Fd: 1, Bpf_fd: 2}
    
    func main() {
    	pass := true
    
    	// The Go translation of bitfields should not have any of the
    	// bitfield types. The order in which bitfields are laid out
    	// in memory is implementation defined, so we can't easily
    	// know how a bitfield should correspond to a Go type, even if
    	// it appears to be aligned correctly.
    	bitfieldType := reflect.TypeOf(bitfields{})
    	check := func(name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_386.s

    //
    
    // See ../runtime/sys_linux_386.s for the reason why we always use int 0x80
    // instead of the glibc-specific "CALL 0x10(GS)".
    #define INVOKE_SYSCALL	INT	$0x80
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-28
    	JMP	syscall·Syscall(SB)
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-40
    	JMP	syscall·Syscall6(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. test/typeparam/issue47896.go

    package main
    
    import (
    	"database/sql"
    )
    
    // Collection generic interface which things can be added to.
    type Collection[T any] interface {
    	Add(T)
    }
    
    // Slice generic slice implementation of a Collection
    type Slice[T any] []*T
    
    func (s *Slice[T]) Add(t *T) {
    	*s = append(*s, t)
    }
    
    type Scanner interface {
    	Scan(...interface{}) error
    }
    
    type Mapper[T any] func(s Scanner, t T) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. src/net/netip/slow_test.go

    	}
    
    	return s, nil
    }
    
    // parseIPv4Slow parses and returns an IPv4 address in dotted quad
    // form, e.g. "192.168.0.1". It is slow but easy to read, and the
    // reference implementation against which we compare faster
    // implementations for correctness.
    func parseIPv4Slow(s string) (Addr, error) {
    	fs := strings.Split(s, ".")
    	if len(fs) != 4 {
    		return Addr{}, fmt.Errorf("netaddr.ParseIP(%q): invalid IP address", s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. src/debug/buildinfo/buildinfo.go

    	dataLen := readPtr(hdr[ptrSize:])
    	data, err := x.ReadData(dataAddr, dataLen)
    	if err != nil || uint64(len(data)) < dataLen {
    		return ""
    	}
    	return string(data)
    }
    
    // elfExe is the ELF implementation of the exe interface.
    type elfExe struct {
    	f *elf.File
    }
    
    func (x *elfExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, prog := range x.f.Progs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/README.md

    Interested users will have to evaluate for themselves whether the code
    is useful for their own purposes.
    
    ---
    
    This directory holds the core of the BoringCrypto implementation
    as well as the build scripts for the module itself: syso/*.syso.
    
    syso/goboringcrypto_linux_amd64.syso is built with:
    
    	GOARCH=amd64 ./build.sh
    
    syso/goboringcrypto_linux_arm64.syso is built with:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/help_test.go

    	// init-time configuration
    	cmd := testenv.Command(t, testGo, "help", "documentation")
    	// Unset GO111MODULE so that the 'go get' section matches
    	// the default 'go get' implementation.
    	cmd.Env = append(cmd.Environ(), "GO111MODULE=")
    	cmd.Stderr = new(strings.Builder)
    	out, err := cmd.Output()
    	if err != nil {
    		t.Fatalf("%v: %v\n%s", cmd, err, cmd.Stderr)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 15:45:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top