Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for newsize (2.04 sec)

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

      GTEST_INFO,
      GTEST_WARNING,
      GTEST_ERROR,
      GTEST_FATAL
    };
    
    // Formats log entry severity, provides a stream object for streaming the
    // log message, and terminates the message with a newline when going out of
    // scope.
    class GTEST_API_ GTestLog {
     public:
      GTestLog(GTestLogSeverity severity, const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      GTEST_INFO,
      GTEST_WARNING,
      GTEST_ERROR,
      GTEST_FATAL
    };
    
    // Formats log entry severity, provides a stream object for streaming the
    // log message, and terminates the message with a newline when going out of
    // scope.
    class GTEST_API_ GTestLog {
     public:
      GTestLog(GTestLogSeverity severity, const char* file, int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    	if strings.ContainsAny(srcfile, "\r\n") {
    		// This should have been checked when the file path was first resolved,
    		// but we double check here just to be sure.
    		fatalf("internal error: writeOutput: srcfile contains unexpected newline character: %q", srcfile)
    	}
    	fmt.Fprintf(fgo1, "//line %s:1:1\n", srcfile)
    	fgo1.Write(f.Edit.Bytes())
    
    	// While we process the vars and funcs, also write gcc output.
    	// Gcc output starts with the preamble.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		if r0 != 0 {
    			fd, _, _ := CallLeFuncWithPtrReturn(GetZosLibVec()+SYS___ATOI_A<<4, r0)
    			f := os.NewFile(fd, "zostracefile")
    			if f != nil {
    				ZosTracefile = f
    			}
    		}
    
    	}
    }
    
    //go:noescape
    func CallLeFuncWithErr(funcdesc uintptr, parms ...uintptr) (ret, errno2 uintptr, err Errno)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    		// contents in symtab.go:symtab().
    		mdsb.SetSize(0)
    
    		// In addition, on ARM, the runtime depends on the linker
    		// recording the value of GOARM.
    		if ctxt.Arch.Family == sys.ARM {
    			goarm := ctxt.loader.LookupOrCreateSym("runtime.goarm", 0)
    			sb := ctxt.loader.MakeSymbolUpdater(goarm)
    			sb.SetType(sym.SDATA)
    			sb.SetSize(0)
    			sb.AddUint8(uint8(buildcfg.GOARM.Version))
    
    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