Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for CFlags (0.38 sec)

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

    typedef TypeWithSize<8>::UInt UInt64;
    typedef TypeWithSize<8>::Int TimeInMillis;  // Represents time in milliseconds.
    
    // Utilities for command line flags and environment variables.
    
    // Macro for referencing flags.
    #define GTEST_FLAG(name) FLAGS_gtest_##name
    
    // Macros for declaring flags.
    #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
    #define GTEST_DECLARE_int32_(name) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    		if c.flags&suiteECDHE == 0 {
    			return false
    		}
    		if c.flags&suiteECSign != 0 {
    			if !ecdsaCipherSuite {
    				return false
    			}
    		} else {
    			if ecdsaCipherSuite {
    				return false
    			}
    		}
    		if vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
    			return false
    		}
    		return true
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. src/reflect/type.go

    		return typehash(ktyp, p, seed)
    	}
    	mt.Flags = 0
    	if ktyp.Size_ > abi.MapMaxKeyBytes {
    		mt.KeySize = uint8(goarch.PtrSize)
    		mt.Flags |= 1 // indirect key
    	} else {
    		mt.KeySize = uint8(ktyp.Size_)
    	}
    	if etyp.Size_ > abi.MapMaxElemBytes {
    		mt.ValueSize = uint8(goarch.PtrSize)
    		mt.Flags |= 2 // indirect value
    	} else {
    		mt.MapType.ValueSize = uint8(etyp.Size_)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	JNE	notintel
    	CMPL	DX, $0x49656E69  // "ineI"
    	JNE	notintel
    	CMPL	CX, $0x6C65746E  // "ntel"
    	JNE	notintel
    	MOVB	$1, runtime·isIntel(SB)
    
    notintel:
    	// Load EAX=1 cpuid flags
    	MOVL	$1, AX
    	CPUID
    	MOVL	AX, runtime·processorVersionInfo(SB)
    
    nocpuinfo:
    	// if there is an _cgo_init, call it.
    	MOVQ	_cgo_init(SB), AX
    	TESTQ	AX, AX
    	JZ	needtls
    	// arg 1: g0, already in DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    	d := signed
    	if ft.isNonNegative(iv.min) && ft.isNonNegative(iv.max) {
    		d |= unsigned
    	}
    
    	if iv.flags&indVarMinExc == 0 {
    		addRestrictions(b, ft, d, iv.min, iv.ind, lt|eq)
    	} else {
    		addRestrictions(b, ft, d, iv.min, iv.ind, lt)
    	}
    
    	if iv.flags&indVarMaxInc == 0 {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt)
    	} else {
    		addRestrictions(b, ft, d, iv.ind, iv.max, lt|eq)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // aliasing, he should define GTEST_HAS_GLOBAL_STRING to 0.
    //
    // If the user doesn't define GTEST_HAS_GLOBAL_STRING, it is defined
    // heuristically.
    
    namespace testing {
    
    // Declares the flags.
    
    // This flag temporary enables the disabled tests.
    GTEST_DECLARE_bool_(also_run_disabled_tests);
    
    // This flag brings the debugger on an assertion failure.
    GTEST_DECLARE_bool_(break_on_failure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

        * Use autoscaling/v1 in kubectl by default.
    * federation: Adding dnsprovider flags to federation-controller-manager ([#27158](https://github.com/kubernetes/kubernetes/pull/27158), [@nikhiljindal](https://github.com/nikhiljindal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    // newFlagSetWithGlobals constructs a new pflag.FlagSet with global flags registered
    // on it.
    func newFlagSetWithGlobals() *pflag.FlagSet {
    	fs := pflag.NewFlagSet("", pflag.ExitOnError)
    	// set the normalize func, similar to k8s.io/component-base/cli//flags.go:InitFlags
    	fs.SetNormalizeFunc(cliflag.WordSepNormalizeFunc)
    	// explicitly add flags from libs that register global flags
    	options.AddGlobalFlags(fs)
    	return fs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // Synopsis:
    // Bool()
    //   - returns a generator producing sequences with elements {false, true}.
    //
    // It is useful when testing code that depends on Boolean flags. Combinations
    // of multiple flags can be tested when several Bool()'s are combined using
    // Combine() function.
    //
    // In the following example all tests in the test case FlagDependentTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    	__tsan_acquire(&_cgo_sync);
    }
    
    __attribute__ ((unused))
    static void _cgo_tsan_release() {
    	__tsan_release(&_cgo_sync);
    }
    `
    
    // Set to yesTsanProlog if we see -fsanitize=thread in the flags for gcc.
    var tsanProlog = noTsanProlog
    
    // noMsanProlog is a prologue defining an MSAN function in C.
    // This is used when not compiling with -fsanitize=memory.
    const noMsanProlog = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top