Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for big4 (0.28 sec)

  1. src/crypto/tls/handshake_client_test.go

    	"crypto/elliptic"
    	"crypto/rand"
    	"crypto/rsa"
    	"crypto/x509"
    	"crypto/x509/pkix"
    	"encoding/base64"
    	"encoding/hex"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"internal/byteorder"
    	"io"
    	"math/big"
    	"net"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    // Note: see comment in handshake_test.go for details of how the reference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"bug2", "{{$.NonEmptyInterface.Method0}}", "M0", tVal, true},
    	// Struct values were not legal in with - mere oversight.
    	{"bug3", "{{with $}}{{.Method0}}{{end}}", "M0", tVal, true},
    	// Nil interface values in if.
    	{"bug4", "{{if .Empty0}}non-nil{{else}}nil{{end}}", "nil", tVal, true},
    	// Stringer.
    	{"bug5", "{{.Str}}", "foozle", tVal, true},
    	{"bug5a", "{{.Err}}", "erroozle", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    									data := sdat[s.Value-sect.Addr:]
    									strlen := bo.Uint64(data[:8])
    									if strlen > (1<<(uint(p.IntSize*8)-1) - 1) { // greater than MaxInt?
    										fatalf("string literal too big")
    									}
    									strlens[n] = int(strlen)
    								}
    							}
    						}
    						break
    					}
    				}
    			}
    
    			buildStrings()
    		}
    		return d, ints, floats, strs
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	forEachGRace(func(gp1 *g) {
    		gp1.goroutineProfiled.Store(goroutineProfileAbsent)
    	})
    
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&labelSync))
    	}
    
    	if n != int(endOffset) {
    		// It's a big surprise that the number of goroutines changed while we
    		// were collecting the profile. But probably better to return a
    		// truncated profile than to crash the whole process.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    // caller should either call spanOfHeap or check the span bounds
    // explicitly.
    //
    // Must be nosplit because it has callers that are nosplit.
    //
    //go:nosplit
    func spanOf(p uintptr) *mspan {
    	// This function looks big, but we use a lot of constant
    	// folding around arenaL1Bits to get it under the inlining
    	// budget. Also, many of the checks here are safety checks
    	// that Go needs to do anyway, so the generated code is quite
    	// short.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    		return
    	}
    
    	list := state.lists[varID]
    	list = appendPtr(state.ctxt, list, start)
    	list = appendPtr(state.ctxt, list, end)
    	// Where to write the length of the location description once
    	// we know how big it is.
    	sizeIdx := len(list)
    	list = list[:len(list)+2]
    
    	if state.loggingLevel > 1 {
    		var partStrs []string
    		for i, slot := range state.varSlots[varID] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/testing/testing.go

    //
    // If a benchmark needs some expensive setup before running, the timer
    // may be reset:
    //
    //	func BenchmarkBigLen(b *testing.B) {
    //	    big := NewBig()
    //	    b.ResetTimer()
    //	    for range b.N {
    //	        big.Len()
    //	    }
    //	}
    //
    // If a benchmark needs to test performance in a parallel setting, it may use
    // the RunParallel helper function; such benchmarks are intended to be used with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/os/os_test.go

    	}
    	return names[0:count]
    }
    
    // Check that reading a directory one entry at a time gives the same result
    // as reading it all at once.
    func TestReaddirnamesOneAtATime(t *testing.T) {
    	t.Parallel()
    
    	// big directory that doesn't change often.
    	dir := "/usr/bin"
    	switch runtime.GOOS {
    	case "android":
    		dir = "/system/bin"
    	case "ios", "wasip1":
    		wd, err := Getwd()
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. pkg/controller/volume/persistentvolume/pv_controller.go

    				_, updateErr := ctrl.storeVolumeUpdate(logger, newVol)
    				if updateErr != nil {
    					// We will get an "volume added" event soon, this is not a big error
    					logger.V(4).Info("provisionClaimOperation: cannot update internal cache", "volumeName", volume.Name, "err", updateErr)
    				}
    			}
    			break
    		}
    		// Save failed, try again after a while.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier.go

    	activeChains := sets.New[string]()
    	activeAffinitySets := sets.New[string]()
    
    	// Compute total number of endpoint chains across all services
    	// to get a sense of how big the cluster is.
    	totalEndpoints := 0
    	for svcName := range proxier.svcPortMap {
    		totalEndpoints += len(proxier.endpointsMap[svcName])
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
Back to top