Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 201 for complain (0.22 sec)

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

    # define GTEST_SNPRINTF_(buffer, size, format, ...) \
         _snprintf_s(buffer, size, size, format, __VA_ARGS__)
    #elif defined(_MSC_VER)
    // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't
    // complain about _snprintf.
    # define GTEST_SNPRINTF_ _snprintf
    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    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. src/runtime/traceback.go

    		if doPrint && gp.m.incgo && f.funcID == abi.FuncID_sigpanic {
    			// We can inject sigpanic
    			// calls directly into C code,
    			// in which case we'll see a C
    			// return PC. Don't complain.
    			doPrint = false
    		}
    		if fail || doPrint {
    			print("runtime: g ", gp.goid, ": unexpected return pc for ", funcname(f), " called from ", hex(frame.lr), "\n")
    			tracebackHexdump(gp.stack, frame, 0)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_SNPRINTF_(buffer, size, format, ...) \
         _snprintf_s(buffer, size, size, format, __VA_ARGS__)
    #elif defined(_MSC_VER)
    // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't
    // complain about _snprintf.
    # define GTEST_SNPRINTF_ _snprintf
    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. test/ken/complit.go

    Rob Pike <******@****.***> 1330061064 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/complit.go

    Matthew Dempsky <******@****.***> 1694062987 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. test/complit.go

    Rob Pike <******@****.***> 1329617983 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    	tg.tempFile("src/p2/p2.go", `//go:binary-only-packages-are-not-great
    
    		package p2
    		import "p1"
    		func F() { p1.F(true) }
    	`)
    	tg.runFail("install", "p2")
    	tg.grepStderr("no Go files", "did not complain about missing sources")
    
    	tg.tempFile("src/p1/missing.go", `//go:binary-only-package
    
    		package p1
    		import _ "fmt"
    		func G()
    	`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		toc := ctxt.loader.LookupOrCreateSym(".TOC.", 0)
    		sb := ctxt.loader.MakeSymbolUpdater(toc)
    		sb.SetType(sym.SDYNIMPORT)
    	}
    
    	// The Android Q linker started to complain about underalignment of the our TLS
    	// section. We don't actually use the section on android, so don't
    	// generate it.
    	if buildcfg.GOOS != "android" {
    		tlsg := ctxt.loader.LookupOrCreateSym("runtime.tlsg", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue25966.go

    // compile -N
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 25966: liveness code complains autotmp live on
    // function entry.
    
    package p
    
    var F = []func(){
    	func() func() { return (func())(nil) }(),
    }
    
    var A = []int{}
    
    type ss struct {
    	string
    	float64
    	i int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 27 14:30:00 UTC 2018
    - 405 bytes
    - Viewed (0)
  10. src/runtime/symtab_test.go

    		{"lineVar1", lineVar1, 2},
    		{"lineVar2a", lineVar2a, 3},
    		{"lineVar2b", lineVar2b, 3},
    		{"compLit[0].lineA", compLit[0].lineA, 9},
    		{"compLit[0].lineB", compLit[0].lineB, 9},
    		{"compLit[1].lineA", compLit[1].lineA, 12},
    		{"compLit[1].lineB", compLit[1].lineB, 13},
    		{"compLit[2].lineA", compLit[2].lineA, 17},
    		{"compLit[2].lineB", compLit[2].lineB, 16},
    
    		{"arrayLit[0]", arrayLit[0], 20},
    		{"arrayLit[1]", arrayLit[1], 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top