Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for GO_TEST_RUNTIME_NPE_READMEMSTATS (0.64 sec)

  1. src/runtime/crash_test.go

    				// to indicate failure.
    				os.Exit(0)
    			}
    		}()
    		runtime.PanicForTesting(nil, 1)
    		// We expect to crash, so exit 0 to indicate failure.
    		os.Exit(0)
    	}
    	if os.Getenv("GO_TEST_RUNTIME_NPE_READMEMSTATS") == "1" {
    		runtime.ReadMemStats(nil)
    		os.Exit(0)
    	}
    	if os.Getenv("GO_TEST_RUNTIME_NPE_FUNCMETHOD") == "1" {
    		var f *runtime.Func
    		_ = f.Entry()
    		os.Exit(0)
    	}
    
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top