Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 228 for Implementation (0.66 sec)

  1. src/cmd/compile/internal/types2/stmt.go

    		check.labels(body)
    	}
    
    	if sig.results.Len() > 0 && !check.isTerminating(body, "") {
    		check.error(body.Rbrace, MissingReturn, "missing return")
    	}
    
    	// spec: "Implementation restriction: A compiler may make it illegal to
    	// declare a variable inside a function body if the variable is never used."
    	check.usage(sig.scope)
    }
    
    func (check *Checker) usage(scope *Scope) {
    	var unused []*Var
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/net/http/httptest/server.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Implementation of Server
    
    package httptest
    
    import (
    	"crypto/tls"
    	"crypto/x509"
    	"flag"
    	"fmt"
    	"log"
    	"net"
    	"net/http"
    	"net/http/internal/testcert"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    // It also returns the number of indirections required to get to the
    // implementation.
    func implementsInterface(typ, gobEncDecType reflect.Type) (success bool, indir int8) {
    	if typ == nil {
    		return
    	}
    	rt := typ
    	// The type might be a pointer and we need to keep
    	// dereferencing to the base type until we find an implementation.
    	for {
    		if rt.Implements(gobEncDecType) {
    			return true, indir
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    )
    
    // dse does dead-store elimination on the Function.
    // Dead stores are those which are unconditionally followed by
    // another store to the same location, with no intervening load.
    // This implementation only works within a basic block. TODO: use something more global.
    func dse(f *Func) {
    	var stores []*Value
    	loadUse := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(loadUse)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/net/lookup_test.go

    // PreferGo option used concurrently are all dialed properly.
    func TestConcurrentPreferGoResolversDial(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		// TODO: plan9 implementation of the resolver uses the Dial function since
    		// https://go.dev/cl/409234, this test could probably be reenabled.
    		t.Skipf("skip on %v", runtime.GOOS)
    	}
    
    	testenv.MustHaveExternalNetwork(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    var benchmarkLock sync.Mutex
    
    // Used for every benchmark for measuring memory.
    var memStats runtime.MemStats
    
    // InternalBenchmark is an internal type but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    type InternalBenchmark struct {
    	Name string
    	F    func(b *B)
    }
    
    // B is a type passed to [Benchmark] functions to manage benchmark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/crypto/internal/mlkem768/mlkem768_test.go

    	return dk.EncapsulationKey(), dk
    }
    
    var millionFlag = flag.Bool("million", false, "run the million vector test")
    
    // TestPQCrystalsAccumulated accumulates the 10k vectors generated by the
    // reference implementation and checks the hash of the result, to avoid checking
    // in 150MB of test vectors.
    func TestPQCrystalsAccumulated(t *testing.T) {
    	n := 10000
    	expected := "f7db260e1137a742e05fe0db9525012812b004d29040a5b606aad3d134b548d3"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/field/fe.go

    // Add sets v = a + b, and returns v.
    func (v *Element) Add(a, b *Element) *Element {
    	v.l0 = a.l0 + b.l0
    	v.l1 = a.l1 + b.l1
    	v.l2 = a.l2 + b.l2
    	v.l3 = a.l3 + b.l3
    	v.l4 = a.l4 + b.l4
    	// Using the generic implementation here is actually faster than the
    	// assembly. Probably because the body of this function is so simple that
    	// the compiler can figure out better optimizations by inlining the carry
    	// propagation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/runtime/hash_test.go

    	"math"
    	"math/rand"
    	"os"
    	. "runtime"
    	"slices"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    func TestMemHash32Equality(t *testing.T) {
    	if *UseAeshash {
    		t.Skip("skipping since AES hash implementation is used")
    	}
    	var b [4]byte
    	r := rand.New(rand.NewSource(1234))
    	seed := uintptr(r.Uint64())
    	for i := 0; i < 100; i++ {
    		randBytes(r, b[:])
    		got := MemHash32(unsafe.Pointer(&b), seed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/base/base.go

    package base
    
    import (
    	"context"
    	"flag"
    	"fmt"
    	"log"
    	"os"
    	"os/exec"
    	"reflect"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/str"
    )
    
    // A Command is an implementation of a go command
    // like go build or go fix.
    type Command struct {
    	// Run runs the command.
    	// The args are the arguments after the command name.
    	Run func(ctx context.Context, cmd *Command, args []string)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top