Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Giant (0.04 sec)

  1. pkg/dns/client/dns_test.go

    			queryAAAA: true,
    		},
    		{
    			name: "udp: large request",
    			host: "giant.",
    			// Upstream UDP server returns big response, we cannot serve it. Compliant server would truncate it.
    			expectResolutionFailure: dns.RcodeServerFailure,
    		},
    		{
    			name:     "tcp: large request",
    			host:     "giant.",
    			expected: giantResponse,
    		},
    		{
    			name:                    "large request edns",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/net/mail/message_test.go

    		// except colon, in a header key. Issue #58862.
    		in: `From: iant@golang.org
    Custom/Header: v
    
    Body
    `,
    		header: Header{
    			"From":          []string{"iant@golang.org"},
    			"Custom/Header": []string{"v"},
    		},
    		body: "Body\n",
    	},
    	{
    		// RFC 4155 mbox format. We've historically permitted this,
    		// so we continue to permit it. Issue #60332.
    		in: `From iant@golang.org Mon Jun 19 00:00:00 2023
    From: ******@****.***
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/scoring.go

    			// distinction between the inlinable case and the
    			// non-inlinable case, but this is hard to do. Example:
    			//
    			//    type I interface { Tiny() int; Giant() }
    			//    type Conc struct { x int }
    			//    func (c *Conc) Tiny() int { return 42 }
    			//    func (c *Conc) Giant() { <huge amounts of code> }
    			//
    			//    func passConcToItf(c *Conc) {
    			//        makesItfMethodCall(c)
    			//    }
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. test/recover.go

    	if s != "hi" {
    		println("try1 wrong value", s, "hi")
    		die()
    	}
    }
    
    // When a deferred big call starts, it must first
    // create yet another stack segment to hold the
    // giant frame for x.  Make sure that doesn't
    // confuse recover.
    func big(mustRecover bool) {
    	var x [100000]int
    	x[0] = 1
    	x[99999] = 1
    	_ = x
    
    	v := recover()
    	if mustRecover {
    		if v == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  5. src/runtime/arena.go

    	if gcphase == _GCmarktermination {
    		throw("newUserArenaChunk called with gcphase == _GCmarktermination")
    	}
    
    	// Deduct assist credit. Because user arena chunks are modeled as one
    	// giant heap object which counts toward heapLive, we're obligated to
    	// assist the GC proportionally (and it's worth noting that the arena
    	// does represent additional work for the GC, but we also have no idea
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    		return
    	}
    	if len(lv.vars) > 10000 || len(lv.f.Blocks) > 10000 {
    		// Be careful to avoid doing too much work.
    		// Bail if >10000 variables or >10000 blocks.
    		// Otherwise, giant functions make this experiment generate too much code.
    		return
    	}
    	if lv.f.Name == "forkAndExecInChild" {
    		// forkAndExecInChild calls vfork on some platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		sw.add(swc)
    	}
    	if len(sw.List) > 0 { // skip if empty
    		fn.add(sw)
    	}
    	fn.add(stmtf("return false"))
    	genFile.add(fn)
    
    	// Generate a routine per op. Note that we don't make one giant routine
    	// because it is too big for some compilers.
    	for _, op := range ops {
    		rules := oprules[op]
    		_, ok := parseEllipsisRules(oprules[op], arch)
    		if ok {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  8. src/debug/dwarf/line_test.go

    	//   gcc (Debian 12.2.0-10) 12.2.0
    	//   # gcc -g -no-pie -Wl,--compress-debug-sections=zstd line*.c
    
    	zfile1H := &LineFile{Name: "/home/iant/go/src/debug/dwarf/testdata/line1.h"}
    	zfile1C := &LineFile{Name: "/home/iant/go/src/debug/dwarf/testdata/line1.c"}
    	zfile2C := &LineFile{Name: "/home/iant/go/src/debug/dwarf/testdata/line2.c"}
    
    	// Line table based on readelf --debug-dump=rawline,decodedline
    	want := []LineEntry{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_libinit.c

    		// whereas the specific and destructor is per thread.
    		if (x_cgo_pthread_key_created == 0 && pthread_key_create(&pthread_g, pthread_key_destructor) == 0) {
    			x_cgo_pthread_key_created = 1;
    		}
    
    
    		// TODO(iant): For the case of a new C thread calling into Go, such
    		// as when using -buildmode=c-archive, we know that Go runtime
    		// initialization is complete but we do not know that all Go init
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/runtime/netpoll_kqueue.go

    	ev[0].flags = _EV_ADD | _EV_CLEAR
    	ev[0].fflags = 0
    	ev[0].data = 0
    
    	if goarch.PtrSize == 4 {
    		// We only have a pointer-sized field to store into,
    		// so on a 32-bit system we get no sequence protection.
    		// TODO(iant): If we notice any problems we could at least
    		// steal the low-order 2 bits for a tiny sequence number.
    		ev[0].udata = (*byte)(unsafe.Pointer(pd))
    	} else {
    		tp := taggedPointerPack(unsafe.Pointer(pd), pd.fdseq.Load())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top