Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Giant (0.07 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/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// libopcodes uses the more regular expected encoding).
    		// TODO(rsc): Test to ensure Intel manuals are correct and report to libopcodes maintainers?
    		// NOTE: iant thinks this is deliberate, but we can't find the history.
    		_, reg1 := inst.Args[0].(Reg)
    		_, reg2 := inst.Args[1].(Reg)
    		if reg1 && reg2 && (inst.Opcode>>24 == 0xDC || inst.Opcode>>24 == 0xDE) {
    			switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  10. src/context/x_test.go

    				cancel()
    				<-c.Done()
    			},
    			limit:      8,
    			gccgoLimit: 25,
    		},
    	} {
    		limit := test.limit
    		if runtime.Compiler == "gccgo" {
    			// gccgo does not yet do escape analysis.
    			// TODO(iant): Remove this when gccgo does do escape analysis.
    			limit = test.gccgoLimit
    		}
    		numRuns := 100
    		if testing.Short() {
    			numRuns = 10
    		}
    		if n := testing.AllocsPerRun(numRuns, test.f); n > limit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top