Home
last modified time | relevance | path

Searched refs:testBool (Results 1 – 25 of 453) sorted by relevance

12345678910>>...19

/dports/security/lego/lego-4.5.3/vendor/github.com/softlayer/softlayer-go/sl/
H A Dhelpers_test.go31 testBool := true
46 if Get(testBool) != true {
47 t.Errorf("Expected %t, got %t", testBool, Get(testBool))
63 if Get(&testBool) != true {
64 t.Errorf("Expected %t, got %t", testBool, Get(&testBool))
/dports/security/vault/vault-1.8.2/vendor/github.com/softlayer/softlayer-go/sl/
H A Dhelpers_test.go31 testBool := true
46 if Get(testBool) != true {
47 t.Errorf("Expected %t, got %t", testBool, Get(testBool))
63 if Get(&testBool) != true {
64 t.Errorf("Expected %t, got %t", testBool, Get(&testBool))
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/fdbserver/workloads/
H A DMetricLogging.actor.cpp31 bool testBool, enabled; member
45 testBool = getOption( options, LiteralStringRef("testBool"), true ); in MetricLoggingWorkload()
49 if( testBool ) { in MetricLoggingWorkload()
66 if( self->testBool ) { in _setup()
97 if( self->testBool ) { in MetricLoggingClient()
/dports/graphics/piglit/piglit-136a7f5fa0703603be1ffb338abe4865e76a8058/tests/spec/glsl-1.10/execution/
H A Dglsl-fs-uniform-bool-2.shader_test11 uniform bool testBool;
14 gl_FragColor = testBool ? vec4(0.0, 1.0, 0.0, 1.0) : vec4(1.0, 0.0, 0.0, 1.0);
18 uniform int testBool 1
H A Dglsl-fs-uniform-bool-1.shader_test11 uniform bool testBool;
14 if (testBool)
21 uniform int testBool 1
/dports/sysutils/istio/istio-1.6.7/pkg/cmd/
H A Dflag_test.go84 var testBool bool
85 flag.BoolVar(&testBool, "testbool", defaultBool, "test bool flag")
100 if testBool != defaultBool { // nolint: megacheck
101 t.Errorf("%s: pflag parse error. Actual %t, Expected %t", testName, testBool, defaultBool)
/dports/devel/py-mypy/mypy-0.910/mypyc/test-data/
H A Drun-python37.test15 def testBool(p: Person1) -> bool:
66 from native import Person1, Person1b, Person2, Person3, Person4, testBool
70 assert testBool(i1) == True
71 assert testBool(Person1(age = 5, name = 'robo')) == False
75 assert testBool(i1b) == True
76 assert testBool(Person1b(age = 5, name = 'robo')) == False
/dports/security/lego/lego-4.5.3/vendor/github.com/scaleway/scaleway-sdk-go/scw/
H A Dconvert_test.go13 testBool = true var
61 pointer := BoolPtr(testBool)
62 slice := []bool{testBool}
67 testhelpers.Equals(t, testBool, *pointer)
72 testhelpers.Equals(t, testBool, *sliceOfPointers[0])
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/scaleway/scaleway-sdk-go/scw/
H A Dconvert_test.go13 testBool = true var
61 pointer := BoolPtr(testBool)
62 slice := []bool{testBool}
67 testhelpers.Equals(t, testBool, *pointer)
72 testhelpers.Equals(t, testBool, *sliceOfPointers[0])
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ghc-exactprint-0.6.4/tests/examples/ghc80/
H A DT11076A.hs17 testBool :: Bool -> Int
18 testBool !x = I# (cmm_testPrim (unsafeCoerce x)) function
/dports/math/openturns/openturns-1.18/python/test/
H A Dt_TestResult_std.py15 testBool = True variable
19 testResultTest = TestResult(type, testBool, testVal, testThres, statistic)
/dports/graphics/podofo/podofo-0.9.7/test/unit/
H A DTokenizerTest.h39 CPPUNIT_TEST( testBool );
57 void testBool();
/dports/security/razorback-api/api-0.5.0/tests/
H A DconfigTest.c96 static bool testBool = false; variable
106 {"Bool", RZB_CONF_KEY_TYPE_BOOL, &testBool, NULL},
129 printf("Bool: %d\n", (int)testBool); in main()
/dports/math/openturns/openturns-1.18/lib/test/
H A Dt_TestResult_std.cxx39 Bool testBool = true; in main() local
43 TestResult testResultTest(type, testBool, testVal, testThres, statistic); in main()
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/declarative/qdeclarativecomponent/data/
H A DcreateObjectWithScript.qml20 property bool testBool: false
38 …root.declarativeitem = b.createObject(root, {"x":17,"y":17,"testBool":true,"testInt":17,"testObjec…
/dports/biology/bamutil/bamUtil-1.0.15/libStatGen/general/test/packedVectorTest/
H A DPackedVectorTest.cpp31 void testBool();
37 testBool(); in test()
44 void PackedArrayTest::testBool(void) in testBool() function in PackedArrayTest
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/src/module/common/
H A DdebugOnTest.c123 bool testBool = true; in testRun() local
124 bool *testBoolP = &testBool; in testRun()
/dports/net-im/qxmpp-qt5/qxmpp-1.4.0/tests/qxmpprpciq/
H A Dtst_qxmpprpciq.cpp58 void testBool();
78 void tst_QXmppRpcIq::testBool() in testBool() function in tst_QXmppRpcIq
/dports/net/storj/storj-1.45.3/vendor/github.com/apache/thrift/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')
/dports/www/fabio/fabio-1.5.14/vendor/github.com/apache/thrift/thrift-da1169d75b15/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/apache/thrift/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/thrift/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')
/dports/devel/py-thrift/thrift-0.14.0/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')
/dports/devel/thrift/thrift-0.14.0/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')
/dports/devel/thrift-cpp/thrift-0.14.0/test/lua/
H A Dtest_basic_client.lua102 assertEqual(client:testBool(true), true, 'Failed testBool true')
103 assertEqual(client:testBool(false), false, 'Failed testBool false')

12345678910>>...19