Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 132 for Implementation (0.4 sec)

  1. src/syscall/syscall_linux_test.go

    	}
    	if testing.Short() && testenv.Builder() != "" && os.Getenv("USER") == "swarming" {
    		// The Go build system's swarming user is known not to be root.
    		// Unfortunately, it sometimes appears as root due the current
    		// implementation of a no-network check using 'unshare -n -r'.
    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    
    	if runtime.GOOS == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/math/rand/rand.go

    // requires that the stream of values produced by math/rand remain unchanged.
    // int31n can thus only be used internally, by newly introduced APIs.
    //
    // For implementation details, see:
    // https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction
    // https://lemire.me/blog/2016/06/30/fast-random-shuffling
    func (r *Rand) int31n(n int32) int32 {
    	v := r.Uint32()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package driver implements the core pprof functionality. It can be
    // parameterized with a flag implementation, fetch and symbolize
    // mechanisms.
    package driver
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    
    	"github.com/google/pprof/internal/plugin"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top