| /third_party/mesa3d/src/panfrost/ci/ |
| D | panfrost-t860-fails.txt | 1 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.0,Fail 2 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.1,Fail 3 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.2,Fail 4 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.3,Fail 5 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.4,Fail 6 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.5,Fail 7 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.8,Fail 8 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.9,Fail 9 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.10,Fail 10 dEQP-GLES3.functional.draw_buffers_indexed.random.max_implementation_draw_buffers.12,Fail [all …]
|
| /third_party/mesa3d/src/intel/ci/ |
| D | intel-adl-fails.txt | 7 program@execute@global-offset,Fail 8 program@execute@global-offset@3d- input dependent,Fail 9 program@execute@vstore@vstore-char-private,Crash 10 program@execute@vstore@vstore-short-private,Crash 11 program@execute@vstore@vstore-uchar-private,Crash 12 program@execute@vstore@vstore-ushort-private,Crash 13 program@execute@vstore@vstore_half-float-private,Crash 16 program@execute@vector-conversion,Fail 19 program@execute@builtin@builtin-float-nextafter-1.0.generated,Fail 20 program@execute@builtin@builtin-float-nextafter-1.0.generated@nextafter float1,Fail [all …]
|
| /third_party/mindspore/mindspore-src/source/tests/ut/cpp/dataset/ |
| D | execute_test.cc | 2 * Copyright 2020-2024 Huawei Technologies Co., Ltd 8 * http://www.apache.org/licenses/LICENSE-2.0 21 #include "minddata/dataset/include/dataset/execute.h" 41 /// Feature: Execute Transform op 45 MS_LOG(INFO) << "Doing MindDataTestExecute-TestAllpassBiquadWithEager."; in TEST_F() 48 …2.716064453125000000e-03, 6.347656250000000000e-03, 9.246826171875000000e-03, 1.089477539062500000… in TEST_F() 49 …1.138305664062500000e-02, 1.156616210937500000e-02, 1.394653320312500000e-02, 1.550292968750000000… in TEST_F() 50 …1.614379882812500000e-02, 1.840209960937500000e-02, 1.718139648437500000e-02, 1.599121093750000000… in TEST_F() 51 …1.647949218750000000e-02, 1.510620117187500000e-02, 1.385498046875000000e-02, 1.345825195312500000… in TEST_F() 52 …1.419067382812500000e-02, 1.284790039062500000e-02, 1.052856445312500000e-02, 9.368896484375000000… in TEST_F() [all …]
|
| /third_party/mesa3d/src/gallium/drivers/llvmpipe/ci/ |
| D | llvmpipe-rusticl-fails.txt | 22 program@execute@amdgcn-f32-inline-immediates,Fail 23 program@execute@amdgcn-f32-inline-immediates@add integer 64,Fail 26 program@execute@builtin@builtin-float-nextafter-1.0.generated,Fail 27 program@execute@builtin@builtin-float-nextafter-1.0.generated@nextafter float1,Fail 28 program@execute@builtin@builtin-float-nextafter-1.0.generated@nextafter float16,Fail 29 program@execute@builtin@builtin-float-nextafter-1.0.generated@nextafter float2,Fail 30 program@execute@builtin@builtin-float-nextafter-1.0.generated@nextafter float4,Fail 31 program@execute@builtin@builtin-float-nextafter-1.0.generated@nextafter float8,Fail 34 program@execute@global-offset,Fail 35 program@execute@global-offset@3d- input dependent,Fail [all …]
|
| /third_party/python/Lib/test/test_sqlite3/ |
| D | test_dbapi.py | 1 # pysqlite2/test/dbapi.py: tests for DB-API compliance 3 # Copyright (C) 2004-2010 Gerhard Häring <gh@ghaering.de> 7 # This software is provided 'as-is', without any express or implied 179 # Run-time limit categories 327 con.execute("create table t(t integer check(t > 0))") 330 con.execute("insert into t values(-1)") 360 cu.execute("create table test(id integer primary key, name text)") 361 cu.execute("insert into test(name) values (?)", ("foo",)) 400 res = cu.execute(sql) 403 self.assertRaises(sqlite.ProgrammingError, cu.execute, sql) [all …]
|
| D | test_regression.py | 3 # Copyright (C) 2006-2010 Gerhard Häring <gh@ghaering.de> 7 # This software is provided 'as-is', without any express or implied 44 cur.execute("pragma user_version") 51 cur.execute("pragma schema_version") 62 cursors[0].execute("create table test(x)") 67 cursors[i].execute(" " * i + "select x from test") 73 cur.execute('select 1 as "foo bar [datetime]"') 76 cur.execute('select 1 as "foo baz"') 90 cur.execute("select 1 x union select " + str(i)) 95 con.execute("create table foo(x, unique(x) on conflict rollback)") [all …]
|
| D | test_types.py | 7 # This software is provided 'as-is', without any express or implied 39 self.cur.execute("create table test(i integer, s varchar, f number, b blob)") 46 self.cur.execute("insert into test(s) values (?)", ("Österreich",)) 47 self.cur.execute("select s from test") 52 self.cur.execute("insert into test(s) values (?)", ("a\0b",)) 53 self.cur.execute("select s from test") 58 self.cur.execute("insert into test(i) values (?)", (42,)) 59 self.cur.execute("select i from test") 65 self.cur.execute("insert into test(i) values (?)", (num,)) 66 self.cur.execute("select i from test") [all …]
|
| D | test_userfunctions.py | 1 # pysqlite2/test/userfunctions.py: tests for user-defined functions and 4 # Copyright (C) 2005-2007 Gerhard Häring <gh@ghaering.de> 8 # This software is provided 'as-is', without any express or implied 207 self.con.create_function("spam", -1, lambda *x: len(x)) 208 self.con.execute("create table test(t text)") 215 self.con.create_function("bla", -100, lambda x: 2*x) 221 self.con.execute("select abs(-1)"); 223 self.con.execute("select max(1, 2)"); 235 cur.execute("select reftest()") 239 cur.execute("select returntext()") [all …]
|
| D | test_transactions.py | 3 # Copyright (C) 2005-2007 Gerhard Häring <gh@ghaering.de> 7 # This software is provided 'as-is', without any express or implied 55 self.cur1.execute("create table test(i)") 56 self.cur1.execute("insert into test(i) values (5)") 57 self.cur1.execute("create table test2(j)") 58 self.cur2.execute("select i from test") 63 self.cur1.execute("create table test(i)") 64 self.cur1.execute("insert into test(i) values (5)") 65 self.cur2.execute("select i from test") 70 self.cur1.execute("create table test(i)") [all …]
|
| D | test_hooks.py | 1 # pysqlite2/test/hooks.py: tests for various SQLite-specific hooks 3 # Copyright (C) 2006-2007 Gerhard Häring <gh@ghaering.de> 7 # This software is provided 'as-is', without any express or implied 37 con.create_collation(None, lambda x, y: (x > y) - (x < y)) 47 con.create_collation("collä", lambda x, y: (x > y) - (x < y)) 54 mycoll = lambda x, y: -((x > y) - (x < y)) 56 result = con.execute(""" 69 return -((x > y) - (x < y)) 82 result = con.execute(sql).fetchall() 88 result = con.execute(sql).fetchall() [all …]
|
| D | test_factory.py | 3 # Copyright (C) 2005-2007 Gerhard Häring <gh@ghaering.de> 7 # This software is provided 'as-is', without any express or implied 54 # gh-95132: keyword args must not be passed as positional args 94 # invalid callable returning non-cursor 103 cur.execute("select 4+5 as foo") 117 row = self.con.execute("select 1, 2").fetchone() 122 row = self.con.execute("select 1 as a_1, 2 as b").fetchone() 133 self.assertEqual(row[-1], 2, "by index: wrong result for column -1") 134 self.assertEqual(row[-2], 1, "by index: wrong result for column -2") 145 row[-3] [all …]
|
| /third_party/mesa3d/src/broadcom/ci/ |
| D | broadcom-rpi5-fails.txt | 1 glx@glx-make-current,Fail 2 glx@glx-multi-window-single-context,Fail 3 glx@glx-swap-pixmap-bad,Fail 4 glx@glx-visuals-depth -pixmap,Fail 5 glx@glx-visuals-stencil -pixmap,Fail 8 shaders@point-vertex-id divisor,Fail 9 shaders@point-vertex-id gl_instanceid divisor,Fail 10 shaders@point-vertex-id gl_instanceid,Fail 11 shaders@point-vertex-id gl_vertexid divisor,Fail 12 shaders@point-vertex-id gl_vertexid gl_instanceid divisor,Fail [all …]
|
| D | broadcom-rpi4-fails.txt | 1 glx@glx-make-current,Fail 2 glx@glx-multi-window-single-context,Fail 3 glx@glx-swap-pixmap-bad,Fail 4 glx@glx-visuals-stencil -pixmap,Fail 6 shaders@point-vertex-id divisor,Fail 7 shaders@point-vertex-id gl_instanceid divisor,Fail 8 shaders@point-vertex-id gl_instanceid,Fail 9 shaders@point-vertex-id gl_vertexid divisor,Fail 10 shaders@point-vertex-id gl_vertexid gl_instanceid divisor,Fail 11 shaders@point-vertex-id gl_vertexid gl_instanceid,Fail [all …]
|
| /third_party/mesa3d/src/freedreno/ci/ |
| D | freedreno-a660-fails.txt | 1 KHR-GL46.shader_image_load_store.basic-allTargets-store,Fail 2 KHR-GL46.shader_subroutine.control_flow_and_returned_subroutine_values_used_as_subroutine_input,Fail 4 dEQP-GLES31.functional.texture.border_clamp.range_clamp.linear_float_color,Fail 7 dEQP-GLES2.functional.texture.mipmap.cube.projected.nearest_linear,Fail 8 KHR-GLES3.framebuffer_blit.framebuffer_blit_functionality_multisampled_to_singlesampled_blit,Fail 9 KHR-GL46.texture_lod_basic.lod_selection,Fail 10 KHR-GL46.texture_lod_bias.texture_lod_bias_all,Fail 15 dEQP-VK.dynamic_rendering.primary_cmd_buff.local_read.input_attachments_without_mapping,Fail 16 dEQP-VK.dynamic_rendering.primary_cmd_buff.local_read.max_input_attachments,Fail 19 gmem-dEQP-VK.dynamic_rendering.primary_cmd_buff.local_read.input_attachments_without_mapping,Fail [all …]
|
| D | freedreno-a750-fails.txt | 1 KHR-GL46.shader_draw_parameters_tests.MultiDrawElementIndirectCountParameters,Fail 2 KHR-GL46.shader_draw_parameters_tests.ShaderMultiDrawElementsIndirectParameters,Fail 3 KHR-GL46.shader_image_load_store.basic-allTargets-loadStoreTES,Fail 4 KHR-GL46.shader_image_load_store.basic-allTargets-store,Fail 5 KHR-GL46.shader_image_load_store.multiple-uniforms,Fail 6 KHR-GL46.shader_image_size.advanced-nonMS-tes-float,Fail 7 KHR-GL46.shader_image_size.advanced-nonMS-tes-int,Fail 8 KHR-GL46.shader_image_size.basic-nonMS-tes-int,Fail 9 KHR-GL46.shader_image_size.basic-nonMS-tes-uint,Fail 10 KHR-GL46.tessellation_shader.tessellation_control_to_tessellation_evaluation.gl_tessLevel,Fail [all …]
|
| /third_party/vk-gl-cts/external/openglcts/modules/gl/ |
| D | gl4cMultiBindTests.hpp | 3 /*------------------------------------------------------------------------- 5 * ----------------------------- 7 * Copyright (c) 2015-2016 The Khronos Group Inc. 13 * http://www.apache.org/licenses/LICENSE-2.0 24 */ /*-------------------------------------------------------------------*/ 29 */ /*-------------------------------------------------------------------*/ 42 * - INVALID_ENUM when <target> is not valid; 43 * - INVALID_OPERATION when <first> + <count> is greater than allowed limit; 44 * - INVALID_OPERATION if any value in <buffers> is not zero or the name of 46 * - INVALID_VALUE if any value in <offsets> is less than zero; [all …]
|
| D | gl4cBufferStorageTests.hpp | 3 /*------------------------------------------------------------------------- 5 * ----------------------------- 7 * Copyright (c) 2015-2016 The Khronos Group Inc. 13 * http://www.apache.org/licenses/LICENSE-2.0 24 */ /*-------------------------------------------------------------------*/ 29 */ /*-------------------------------------------------------------------*/ 43 * - INVALID_OPERATION is generated by BufferStorage when 0 is bound to 45 * - INVLIAD_OPERATION is generated by BufferStorage, NamedBufferStorage and 47 * - INVALID_VALUE is generated by BufferStorage and NamedBufferStorage when 49 * - INVLAID_VALUE is generated by BufferStorage and NamedBufferStorage when [all …]
|
| /third_party/gn/src/gn/ |
| D | functions_target_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 19 setup.scope()->set_item_collector(&item_collector); in TEST_F() 27 good_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 37 source_set_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 47 setup.scope()->set_item_collector(&item_collector); in TEST_F() 56 nonscoped_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 66 scoped_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 76 nonexistent_arg_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 87 exclusion_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 98 error_input.parsed()->Execute(setup.scope(), &err); in TEST_F() [all …]
|
| D | functions_target_rust_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 20 setup.scope()->set_item_collector(&item_collector); in TEST_F() 21 setup.scope()->set_source_dir(SourceDir("/")); in TEST_F() 30 exe_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 32 ASSERT_EQ(item_collector.back()->AsTarget()->rust_values().crate_name(), in TEST_F() 41 lib_input.parsed()->Execute(setup.scope(), &err); in TEST_F() 43 ASSERT_EQ(item_collector.back()->AsTarget()->rust_values().crate_name(), in TEST_F() 45 << item_collector.back()->AsTarget()->rust_values().crate_name(); in TEST_F() 54 setup.scope()->set_item_collector(&item_collector); in TEST_F() 55 setup.scope()->set_source_dir(SourceDir("/")); in TEST_F() [all …]
|
| /third_party/python/Lib/test/test_importlib/resources/ |
| D | util.py | 57 spec = ModuleSpec(name, loader, origin='does-not-exist', is_package=is_package) 76 def execute(self, package, path): member in CommonTests 84 self.execute(data01.__name__, 'utf-8.file') 88 self.execute(data01, 'utf-8.file') 92 path = 'utf-8.file' 93 self.execute(data01, path) 97 path = PurePath('utf-8.file') 98 self.execute(data01, path) 103 self.execute(data01.__name__, 'utf-8.file') 108 self.execute(__name__, 'utf-8.file') [all …]
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/src/extendrt/graph_runtime/ |
| D | default_graph_runtime.cc | 8 * http://www.apache.org/licenses/LICENSE-2.0 43 auto status = executor->Prepare(); in Prepare() 45 MS_LOG(ERROR) << "Prepare executor failed executor: " << executor->Name(); in Prepare() 54 Status DefaultGraphRuntime::Execute() { in Execute() function in mindspore::DefaultGraphRuntime 55 MS_LOG(INFO) << "Graph runtime execute begin"; in Execute() 68 MS_LOG(DEBUG) << "Execute executor begin"; in Execute() 69 auto status = executor->Execute(); in Execute() 71 MS_LOG(ERROR) << "Execute executor failed executor: " << executor->Name(); in Execute() 74 MS_LOG(DEBUG) << "Execute executor end"; in Execute() 76 MS_LOG(DEBUG) << "Graph runtime execute end"; in Execute() [all …]
|
| /third_party/tex-hyphen/TL/tlpkg/tlpsrc/ |
| D | hyphen-indic.tlpsrc | 2 depend hyphen-base 3 depend hyph-utf8 8 execute AddHyphen \ 12 file=loadhyph-as.tex \ 13 file_patterns=hyph-as.pat.txt \ 15 execute AddHyphen \ 19 file=loadhyph-bn.tex \ 20 file_patterns=hyph-bn.pat.txt \ 22 execute AddHyphen \ 26 file=loadhyph-gu.tex \ [all …]
|
| /third_party/grpc/tools/run_tests/performance/templates/ |
| D | loadtest_template_prebuilt_all_languages.yaml | 17 - language: csharp 20 - args: 21 - -c 22 - | 23 timeout --kill-after="${KILL_AFTER}" "${POD_TIMEOUT}" dotnet exec \ 24 /execute/qps_worker/Grpc.IntegrationTesting.QpsWorker.dll \ 25 --driver_port="${DRIVER_PORT}" 27 - bash 30 - language: dotnet 33 - args: [all …]
|
| /third_party/python/Doc/library/ |
| D | sqlite3.rst | 1 :mod:`sqlite3` --- DB-API 2.0 interface for SQLite databases 5 :synopsis: A DB-API 2.0 implementation using SQLite 3.x. 21 .. _sqlite3-intro: 23 SQLite is a C library that provides a lightweight disk-based database that 31 compliant with the DB-API 2.0 specification described by :pep:`249`, and 36 * :ref:`sqlite3-tutorial` teaches how to use the :mod:`!sqlite3` module. 37 * :ref:`sqlite3-reference` describes the classes and functions this module 39 * :ref:`sqlite3-howtos` details how to handle specific tasks. 40 * :ref:`sqlite3-explanation` provides in-depth background on 52 :pep:`249` - Database API Specification 2.0 [all …]
|
| /third_party/skia/m133/resources/sksl/runtime/ |
| D | LoopInt.rts | 37 // These loops are inside-out and execute zero times. 39 for (int i = 3; i <= 1; --i) { return false; } 42 // This loop is not inside-out and should execute exactly one time. 54 // These loops are inside-out and execute zero times. 56 for (int i = 4; i < 1; --i) { return false; } 59 // This loop is not inside-out and should execute exactly one time. 71 // These loops are inside-out and execute zero times. 73 for (int i = 1; i >= 3; --i) { return false; } 74 for (int i = 0; i >= 1; --i) { return false; } 76 // This loop is not inside-out and should execute exactly one time. [all …]
|