Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for dying (0.1 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    		case obj.NAME_AUTO,
    			obj.NAME_PARAM:
    			return Yiauto
    		}
    
    		// TODO(rsc): DUFFZERO/DUFFCOPY encoding forgot to set a->index
    		// and got Yi32 in an earlier version of this code.
    		// Keep doing that until we fix yduff etc.
    		if a.Sym != nil && strings.HasPrefix(a.Sym.Name, "runtime.duff") {
    			return Yi32
    		}
    
    		if a.Sym != nil || a.Name != obj.NAME_NONE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    			t.Fatalf("request %v: Reused=%v (want false), WasIdle=%v (want false)", try, info.Reused, info.WasIdle)
    		}
    	}
    }
    
    // Issue 18447: test that the Server's ReadTimeout is stopped while
    // the server's doing its 1-byte background read between requests,
    // waiting for the connection to maybe close.
    func TestServerCancelsReadTimeoutWhenIdle(t *testing.T) { run(t, testServerCancelsReadTimeoutWhenIdle) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    			cas := &info[helpers[x.Choose(len(helpers))]]
    			helper = cas.helper
    			cas.canSelect = true
    			numCanSelect++
    		}
    
    		// Permute cases and case info.
    		// Doing too much here makes the exhaustive loop
    		// too exhausting, so just do two swaps.
    		for loop := 0; loop < 2; loop++ {
    			i := x.Choose(len(cases))
    			j := x.Choose(len(cases))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top