Searched full:build (Results 1 – 25 of 6068) sorted by relevance
12345678910>>...243
3 cmake_dependent_option(RKAIQ_BUILD_DOCS "Build all of rkaiq's documents." OFF "WIN32" OFF)4 cmake_dependent_option(RKAIQ_BUILD_TESTS "Build all of rkaiq's own tests." OFF "WIN32" OFF)5 cmake_dependent_option(RKAIQ_BUILD_EXAMPLES "Build all of rkaiq's own examples." OFF "WIN32" OFF)6 cmake_dependent_option(RKAIQ_ENABLE_ASAN "Build libraries/executable with address santilizer" OFF "…7 cmake_dependent_option(RKAIQ_ENABLE_SIMULATOR "Build simulator for algos run on PC" OFF "WIN32" OFF)8 set(RKAIQ_ENABLE_PARSER_V1 FALSE CACHE INTERNAL "Build rkaiq's old xml parser")9 set(RKAIQ_ENABLE_CAMGROUP FALSE CACHE INTERNAL "Build rkaiq's camera group algorithms")10 set(RKAIQ_ENABLE_LIBDRM TRUE CACHE INTERNAL "Build rkaiq with libdrm")11 set(RKAIQ_HAVE_FAKECAM FALSE CACHE INTERNAL "Build rkaiq's Fake Cam")12 set(RKAIQ_HAVE_SPSTREAM FALSE CACHE INTERNAL "Build rkaiq's SP Stream")[all …]
146 composite/meson.build \147 config/meson.build \148 damageext/meson.build \149 dbe/meson.build \150 dix/meson.build \151 dri3/meson.build \152 exa/meson.build \153 fb/meson.build \154 glamor/meson.build \155 glx/meson.build \[all …]
2 GCC 10 related build failure due to global variables in a header file with omitted5 Example build failure output:6 …ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `screen_lis…7 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaktotal…8 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peakrecv'…9 … ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:38: multiple definition of `peaksent'…10 …: ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:37: multiple definition of `totals';…11 …ui_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:40: multiple definition of `screen_has…12 …i_common.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:41: multiple definition of `service_has…13 …in/ld: ui.o:/builddir/build/BUILD/iftop-1.0pre4/ui_common.h:36: multiple definition of `screen_lis…[all …]
14 from orm.models import Project, Build, Task, Recipe, Layer, Layer_Version25 build = Build.objects.create(project=project, build_name='fakebuild',28 return BuildRequest.objects.create(build=build, project=project,42 build = build_request.build43 base_selector = '[data-latest-build-result="%s"] ' % build.id45 # build queued; check shown as queued46 selector = base_selector + '[data-build-state="Queued"]'49 'Build queued', 'build should show queued status')52 build.outcome = Build.IN_PROGRESS53 build.recipes_to_parse = recipes_to_parse[all …]
15 from orm.models import Project, Release, BitbakeVersion, Build, Target, Package20 """ Tests for artifacts on the build dashboard /build/X """30 def _get_build_dashboard(self, build): argument32 Navigate to the build dashboard for build34 url = reverse('builddashboard', args=(build.id,))39 Check whether the "Build artifacts" heading is visible (True if it42 return self.element_exists('[data-heading="build-artifacts"]')47 build dashboard, and return True if it is present, False otherwise.53 If a build produced no artifacts, the artifacts heading and images57 build = Build.objects.create(project=self.project,[all …]
16 from orm.models import BitbakeVersion, Release, Project, Build, Target46 'outcome': Build.SUCCEEDED53 'outcome': Build.FAILED60 'outcome': Build.SUCCEEDED63 def _get_build_time_element(self, build): argument65 Return the HTML element containing the build time for a build68 selector = 'div[data-latest-build-result="%s"] ' \69 '[data-role="data-recent-build-buildtime-field"]' % build.id80 def _get_row_for_build(self, build): argument81 """ Get the table row for the build from the all builds table """[all …]
15 from orm.models import Project, Release, BitbakeVersion, Build, LogMessage19 """ Tests for the build dashboard /build/X """31 self.build1 = Build.objects.create(project=project,34 outcome=Build.SUCCEEDED)36 self.build2 = Build.objects.create(project=project,39 outcome=Build.SUCCEEDED)41 self.build3 = Build.objects.create(project=project,44 outcome=Build.FAILED)48 Variable.objects.create(build=self.build1,51 Variable.objects.create(build=self.build2,[all …]
15 # ./build.sh shell16 # ./device/rockchip/common/build-hooks/example.sh -h18 # Usage: ./device/rockchip/common/build-hooks/example.sh [OPTIONS]19 # dummy build dummy20 # A build dummy A21 # B build dummy B22 # C build dummy C28 # ./build.sh -h30 # Usage: build.sh [OPTIONS]32 # dummy build dummy[all …]
3 $('#latest-builds').on('click', '.cancel-build-btn', function(e){27 // cached version of buildData, so we can determine whether a build has31 // returns the cached version of this build, or {} is there isn't a cached one32 function getCached(build) { argument33 return buildData[build.id] || {};36 // returns true if a build's state changed to "Succeeded", "Failed"38 function buildFinished(build) { argument39 var cached = getCached(build);41 cached.state !== build.state &&42 (build.state == 'Succeeded' || build.state == 'Failed' ||[all …]
42 rm -f $kerneldir/build44 mkdir -p $kerneldir/build54 # for on target purposes, we unify build and source57 ln -s build source63 cp --parents $(find -type f -name "Makefile*" -o -name "Kconfig*") $kerneldir/build64 cp --parents $(find -type f -name "Build" -o -name "Build.include") $kerneldir/build68 rm -rf $kerneldir/build/scripts69 rm -rf $kerneldir/build/include71 # now copy in parts from the build that we'll need later76 cp Module.symvers $kerneldir/build[all …]
6 {% block title %} {{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.machine}…8 {% if build.get_sorted_target_list.count > 0 %}9 {{build.get_sorted_target_list.0.target}}12 {%if build.target_set.all.count > 1%}(+{{build.target_set.all.count|add:"-1"}}){%endif%} {{build.ma…17 <div class="{% if build.started %}col-md-10{% else %}col-md-12{% endif %}">18 <div class="page-header build-data">19 <h1>{{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.machine}}</h1>22 <!-- build result bar -->23 …<div class="alert {%if build.outcome == build.SUCCEEDED%}alert-success{%elif build.outcome == buil…24 …><strong>{%if build.outcome == build.SUCCEEDED%}Completed{%elif build.outcome == build.FAILED%}Fai…[all …]
10 var configVarUrl = "{% url 'configvars' build.id %}";14 $("#delete-build-confirm").click(function(){21 $('#delete-build-modal button[data-dismiss="modal"]').hide();25 url: "{% url 'xhr_build' build.id %}",31 libtoaster.setNotification("build-deleted",32 $("#deleted-build-message").html());47 $("#build-menu li a").each(function(){48 /* Set the page active state in the Build menu */66 <span style="display:none" id="deleted-build-message">67 …eleted 1 build: <strong>{{build.get_sorted_target_list|field_values:"target"|join:", "}} {{build.m…[all …]
22 {% for build in mru %}23 …latest-build-result="{{build.id}}" class="alert build-result {% if build.outcome == build.SUCCEEDE…29 <a class="alert-link text-uppercase" href="{% project_url build.project %}">30 {{build.project.name}}37 <div class="row" data-role="build-status-container">47 <!-- build main template -->48 <script id="build-template" type="text/x-jsrender">66 <div data-build-state="<%:state%>">68 <%include tmpl='#cloning-repos-build-template'/%>70 <%include tmpl='#parsing-recipes-build-template'/%>[all …]
30 {{objects.paginator.count}} project build{{objects.paginator.count|pluralize}} found63 {% for build in objects %} {# if we have a build, just display it #}65 … "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign succe…66 {% if build.cooker_log_path %}68 <a href="{% url 'build_artifact' build.id "cookerlog" build.id %}">69 <i class="icon-download-alt" title="Download build log"></i>75 {% for t in build.target_set.all %}76 <a href="{% url "builddashboard" build.id %}">85 … <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td>86 …<td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/…[all …]
1 Build Framework4 The perf build framework was adopted from the kernel build system, hence the7 Basically the user provides set of 'Build' files that list objects and8 directories to nest for specific target to be build.10 Unlike the kernel we don't have a single build object 'obj-y' list that where11 we setup source objects, but we support more. This allows one 'Build' file to12 carry a sources list for multiple build objects.15 Build framework makefiles18 The build framework consists of 2 Makefiles:20 Build.include[all …]
25 bool "build OBEX support"35 bool "build CLI client"38 Build the command line client "bluetoothctl".41 bool "build monitor utility"43 Build monitor utility btmon.46 bool "build tools"48 Build tools like bluemoon, btattach, hex2hcd, l2test,55 Build deprecated tools.57 When "build tools" is selected these tools are installed:64 bool "build experimental tools"[all …]
5 You can build and test sample kernel code here.14 tristate "Build trace_events examples -- loadable modules only"17 This build trace event example modules.20 tristate "Build trace_printk module - tests various trace_printk formats"27 tristate "Build register_ftrace_direct() example"35 tristate "Build sample module for kernel access to Ftrace instancess"42 tristate "Build kobject examples"44 This config option will allow you to build a number of51 tristate "Build kprobes examples -- loadable modules only"54 This build several kprobes example modules.[all …]
17 connected through a parallel port. If you chose to build PARIDE18 support into your kernel, you may answer Y here to build in the19 parallel port IDE driver, otherwise you should answer M to build33 connected through a parallel port. If you chose to build PARIDE34 support into your kernel, you may answer Y here to build in the36 build it as a loadable module. The module will be called pcd. You49 connected through a parallel port. If you chose to build PARIDE50 support into your kernel, you may answer Y here to build in the52 to build it as a loadable module. The module will be called pf.63 connected through a parallel port. If you chose to build PARIDE[all …]
20 The OpenEmbedded build system does not support file or directory52 .. _structure-core-build:54 ``build/``58 generated by the OpenEmbedded build system in its standard configuration59 where the source tree is combined with the output. The :term:`Build Directory`61 the OpenEmbedded build environment setup script (i.e.68 (commonly described as an "out of tree" build), see the115 OpenEmbedded selftests to verify the behavior of the build system. You142 ``oe-init-build-env``145 This script sets up the OpenEmbedded build environment. Running this[all …]
9 **A:** The term ``Poky`` refers to the specific reference build12 generic term used here for the build system is the "OpenEmbedded build26 section for steps on how to update your build tools.41 build and integration tests.55 **Q:** Are there any products built using the OpenEmbedded build system?59 OpenEmbedded build system. See the `Vernier62 the OpenEmbedded build system and the Yocto Project team announces them65 **Q:** What does the OpenEmbedded build system produce as output?68 various formats, the output of an OpenEmbedded build depends on how you82 **A:** The OpenEmbedded build system can build packages in various[all …]
84 BUILD = $(__BUILD) > $(@:.bin=.make.output) 2>&1 macro92 …$(BUILD) -fstack-protector-all -O2 -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma -lelf -I/usr/include/slan…95 $(BUILD)98 $(BUILD) -D_GNU_SOURCE -lpthread101 $(BUILD) -lpthread104 $(BUILD) -fstack-protector-all107 $(BUILD) -O2 -D_FORTIFY_SOURCE=2110 $(BUILD)113 $(BUILD) -lcap116 $(BUILD) -lelf[all …]
40 acpaths = "-I build/ -I build/ac-macros/"47 …rm -f ${S}/build/libtool.m4 ${S}/build/ltmain.sh ${S}/build/ltoptions.m4 ${S}/build/ltsugar.m4 ${S…49 sed -i -e 's:with_sasl="/usr/local":with_sasl="${STAGING_DIR}":' ${S}/build/ac-macros/sasl.m452 …build/build/tmp/work/x86_64-linux/subversion-native/1.8.9-r0/build/subversion/libsvn_ra_local/libs…54 …n `/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-qa-logrotate/build/build/tmp/sysroots/x8…55 …/yocto-worker/nightly-qa-logrotate/build/build/tmp/work/x86_64-linux/subversion-native/1.8.9-r0/su…
... 0/build/meson/contrib/meson.build zstd-1.5.0/build/meson/ ...
13 from orm.models import Build, LogMessage, Target25 help = "Schedules and executes build requests as possible. "\42 # select the build environment and the request to build56 logger.debug("runbuilds: No build env (%s)" % e)59 logger.info("runbuilds: starting build %s, environment %s" %62 # let the build request know where it is being executed66 # this triggers an async build72 logger.error("runbuilds: Error launching build %s" % e)86 # Cancel the pending build and report the exception to the UI88 build = br.build,[all …]