Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for redeclared (0.42 sec)

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

    //
    // The first parameter is the name of the test fixture class, which
    // also doubles as the test case name.  The second parameter is the
    // name of the test within the test case.
    //
    // A test fixture class must be declared earlier.  The user should put
    // his test code between braces after using this macro.  Example:
    //
    //   class FooTest : public testing::Test {
    //    protected:
    //     virtual void SetUp() { b_.AddElement(3); }
    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/reflect/type.go

    	Name() string
    
    	// PkgPath returns a defined type's package path, that is, the import path
    	// that uniquely identifies the package, such as "encoding/base64".
    	// If the type was predeclared (string, error) or not defined (*T, struct{},
    	// []int, or A where A is an alias for a non-defined type), the package path
    	// will be the empty string.
    	PkgPath() string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		// a variable to hold g in assembly (currently only intel).
    		if sb.Type() == 0 {
    			sb.SetType(sym.STLSBSS)
    			sb.SetSize(int64(ctxt.Arch.PtrSize))
    		} else if sb.Type() != sym.SDYNIMPORT {
    			Errorf(nil, "runtime declared tlsg variable %v", sb.Type())
    		}
    		ctxt.loader.SetAttrReachable(tlsg, true)
    		ctxt.Tlsg = tlsg
    	}
    
    	var moduledata loader.Sym
    	var mdsb *loader.SymbolBuilder
    	if ctxt.BuildMode == BuildModePlugin {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top