Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for trackers (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // is 1. If the value is -1 the tests are repeating forever.
    GTEST_DECLARE_int32_(repeat);
    
    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    		// Validate the outgoing headers.
    		if err := validateHeaders(req.Header); err != "" {
    			req.closeBody()
    			return nil, fmt.Errorf("net/http: invalid header %s", err)
    		}
    
    		// Validate the outgoing trailers too.
    		if err := validateHeaders(req.Trailer); err != "" {
    			req.closeBody()
    			return nil, fmt.Errorf("net/http: invalid trailer %s", err)
    		}
    	}
    
    	origReq := req
    	req = setupRewindBody(req)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top