Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // remains alive and unchanged throughout the current test.
      static void SetParam(const ParamType* parameter) {
        parameter_ = parameter;
      }
    
      // Static value used for accessing parameter during a test lifetime.
      static const ParamType* parameter_;
    
      // TestClass must be a subclass of WithParamInterface<T> and Test.
      template <class TestClass> friend class internal::ParameterizedTestFactory;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // remains alive and unchanged throughout the current test.
      static void SetParam(const ParamType* parameter) {
        parameter_ = parameter;
      }
    
      // Static value used for accessing parameter during a test lifetime.
      static const ParamType* parameter_;
    
      // TestClass must be a subclass of WithParamInterface<T> and Test.
      template <class TestClass> friend class internal::ParameterizedTestFactory;
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    			info := httptrace.GotConnInfo{
    				Conn:   r.pc.conn,
    				Reused: r.pc.isReused(),
    			}
    			if !r.idleAt.IsZero() {
    				info.WasIdle = true
    				info.IdleTime = time.Since(r.idleAt)
    			}
    			trace.GotConn(info)
    		}
    		if r.err != nil {
    			// If the request has been canceled, that's probably
    			// what caused r.err; if so, prefer to return the
    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