Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for expectAction (0.13 sec)

  1. src/runtime/mgcpacer.go

    	maxStackScan := c.maxStackScan.Load()
    	maxScanWork := int64(scan + maxStackScan + c.globalsScan.Load())
    	if work > scanWorkExpected {
    		// We've already done more scan work than expected. Because our expectation
    		// is based on a steady-state scannable heap size, we assume this means our
    		// heap is growing. Compute a new heap goal that takes our existing runway
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    		if len(addrs) != 1 {
    			t.Errorf("%s: expected exactly one result, but got %v", name, addrs)
    			continue
    		}
    		if got, want := addrs[0].String(), "127.1.1.1"; got != want {
    			t.Errorf("%s: address doesn't match expectation. got %v, want %v", name, got, want)
    		}
    	}
    }
    
    // Issue 12712.
    // When using search domains, return the error encountered
    // querying the original name instead of an error encountered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top