Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 569 for least (7.54 sec)

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

    			if !(isName(selx.X, "check") && isName(selx.Sel, "errorf")) {
    				return true
    			}
    			// check.errorf calls should have at least errorfMinArgCount arguments:
    			// position, code, format string, and arguments to format
    			if n := len(call.ArgList); n < errorfMinArgCount {
    				t.Errorf("%s: got %d arguments, want at least %d", call.Pos(), n, errorfMinArgCount)
    				return false
    			}
    			format := call.ArgList[errorfFormatIndex]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. src/compress/bzip2/bit_reader.go

    	byter, ok := r.(io.ByteReader)
    	if !ok {
    		byter = bufio.NewReader(r)
    	}
    	return bitReader{r: byter}
    }
    
    // ReadBits64 reads the given number of bits and returns them in the
    // least-significant part of a uint64. In the event of an error, it returns 0
    // and the error can be obtained by calling bitReader.Err().
    func (br *bitReader) ReadBits64(bits uint) (n uint64) {
    	for bits > br.bits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/empty_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // All of the actual test files have limited build constraints. This file
    // ensures there's at least one test file on every platform.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 19:43:56 UTC 2023
    - 320 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/mergelocals_test.go

    	}
    
    	// Expect at least one clump of at least 3.
    	n3 := 0
    	got := []int{}
    	for _, v := range varsAtFrameOffset {
    		if v > 2 {
    			n3++
    		}
    		got = append(got, v)
    	}
    	sort.Ints(got)
    	if n3 == 0 {
    		t.Logf("%s\n", string(out))
    		t.Fatalf("expected at least one clump of 3, got: %+v", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/crypto/tls/cache_test.go

    					return
    				}
    			}
    		}
    	}
    
    	// Keep certA alive until at least now, so that we can
    	// purposefully nil it and force the finalizer to be
    	// called.
    	runtime.KeepAlive(certA)
    	certA = nil
    	runtime.GC()
    
    	timeoutRefCheck(t, string(p.Bytes), 1)
    
    	// Keep certB alive until at least now, so that we can
    	// purposefully nil it and force the finalizer to be
    	// called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_gcflags_order.txt

    # Flags specified with -gcflags should appear after other flags generated by cmd/go.
    
    cd m
    go build -n -gcflags=-lang=go1.17
    stderr ' -lang=go1.16.* -lang=go1.17'
    ! go build -gcflags='-c 0'
    stderr 'compile: -c must be at least 1, got 0'
    
    -- m/go.mod --
    module example.com
    
    go 1.16
    
    -- m/main.go --
    package main
    
    func main() {
        var s = []int{1, 2, 3}
        var pa = (*[2]int)(s[1:])
        println(pa[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 22:22:37 UTC 2023
    - 435 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/help.txt

    stdout tidy
    
    # go help mod tidy explains tidy
    go help mod tidy
    stdout 'usage: go mod tidy'
    
    # go mod help tidy does too
    go mod help tidy
    stdout 'usage: go mod tidy'
    
    # go mod --help doesn't print help but at least suggests it.
    ! go mod --help
    stderr 'Run ''go help mod'' for usage.'
    
    # Earlier versions of Go printed the same as 'go -h' here.
    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/crypto/rsa/example_test.go

    // a buffer that contains a random key. Thus, if the RSA result isn't
    // well-formed, the implementation uses a random key in constant time.
    func ExampleDecryptPKCS1v15SessionKey() {
    	// The hybrid scheme should use at least a 16-byte symmetric key. Here
    	// we read the random key that will be used if the RSA decryption isn't
    	// well-formed.
    	key := make([]byte, 32)
    	if _, err := rand.Read(key); err != nil {
    		panic("RNG failure")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/telemetry.txt

    # Tests for the telemetry subcommand,
    
    # The script test framework sets TEST_TELEMETRY_DIR (overriding the
    # default telemetry dir location) and then checks that at least one
    # counter has been written per script tests.
    # Run go before unsetting TEST_TELEMETRY_DIR to make the tests happy.
    # We want to unset it so the environment we're testing is as close
    # to a user's environment.
    go help telemetry
    env TEST_TELEMETRY_DIR=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/gcsizes.go

    	// of alignment of the elements and fields, respectively.
    	switch t := under(T).(type) {
    	case *Array:
    		// spec: "For a variable x of array type: unsafe.Alignof(x)
    		// is the same as unsafe.Alignof(x[0]), but at least 1."
    		return s.Alignof(t.elem)
    	case *Struct:
    		if len(t.fields) == 0 && IsSyncAtomicAlign64(T) {
    			// Special case: sync/atomic.align64 is an
    			// empty struct we recognize as a signal that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top