Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for fqName (0.16 sec)

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

      bool success_;
      // Stores the message describing the condition in case the expectation
      // construct is not satisfied with the predicate's outcome.
      // Referenced via a pointer to avoid taking too much stack frame space
      // with test assertions.
      internal::scoped_ptr< ::std::string> message_;
    
      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    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. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      bool success_;
      // Stores the message describing the condition in case the expectation
      // construct is not satisfied with the predicate's outcome.
      // Referenced via a pointer to avoid taking too much stack frame space
      // with test assertions.
      internal::scoped_ptr< ::std::string> message_;
    
      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	reclaimCredit atomic.Uintptr
    
    	_ cpu.CacheLinePad // prevents false-sharing between arenas and preceding variables
    
    	// arenas is the heap arena map. It points to the metadata for
    	// the heap for every arena frame of the entire usable virtual
    	// address space.
    	//
    	// Use arenaIndex to compute indexes into this array.
    	//
    	// For regions of the address space that are not backed by the
    	// Go heap, the arena map contains nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    func isLeaf(f *Func) bool {
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op.IsCall() && !v.Op.IsTailCall() {
    				// tail call is not counted as it does not save the return PC or need a frame
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // needRegister reports whether v needs a register.
    func (v *Value) needRegister() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	attrNotInSymbolTable Bitmap // "not in symtab" symbols, indexed by global idx
    	attrUsedInIface      Bitmap // "used in interface" symbols, indexed by global idx
    	attrSpecial          Bitmap // "special" frame symbols, indexed by global idx
    	attrVisibilityHidden Bitmap // hidden symbols, indexed by ext sym index
    	attrDuplicateOK      Bitmap // dupOK symbols, indexed by ext sym index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top