Home
last modified time | relevance | path

Searched refs:JOBS (Results 1 – 25 of 1343) sorted by relevance

12345678910>>...54

/dports/x11-toolkits/scintilla/scite/scripts/
H A Dcheckbuildlinux.sh46 make $JOBS test
53 make $JOBS
64 make $JOBS
70 make $JOBS
78 make $JOBS GTK3=1
84 make $JOBS GTK3=1
108 make $JOBS
117 make $JOBS
139 make $JOBS CLANG=1
145 make $JOBS CLANG=1
[all …]
/dports/editors/scite/scite/scripts/
H A Dcheckbuildlinux.sh46 make $JOBS test
53 make $JOBS
64 make $JOBS
70 make $JOBS
78 make $JOBS GTK3=1
84 make $JOBS GTK3=1
108 make $JOBS
117 make $JOBS
139 make $JOBS CLANG=1
145 make $JOBS CLANG=1
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/call_scilab/examples/call_scilab/c/common/
H A Dmyprog.c102 char **JOBS = NULL; in third_example() local
114 strcpy(JOBS[0], "A=1 .."); in third_example()
115 strcpy(JOBS[1], "+3;"); in third_example()
116 strcpy(JOBS[2], "B = 8;"); in third_example()
118 strcpy(JOBS[3], "+3;"); in third_example()
119 strcpy(JOBS[4], "disp('C=');"); in third_example()
120 strcpy(JOBS[5], "C=A+B;disp(C);"); /* C = 12 */ in third_example()
122 code = SendScilabJobs(JOBS, SizeJOBS); in third_example()
135 if (JOBS[i]) in third_example()
137 free(JOBS[i]); in third_example()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/call_scilab/examples/call_scilab/c/LabWindow/
H A DCallsciC.c67 char **JOBS = NULL; in example2() local
80 strcpy(JOBS[0], "A=1 .."); in example2()
81 strcpy(JOBS[1], "+3;"); in example2()
82 strcpy(JOBS[2], "B = 8;"); in example2()
83 strcpy(JOBS[3], "+3;"); in example2()
84 strcpy(JOBS[4], "C=A+B;"); /* C = 12 */ in example2()
89 printf("JOBS[%d] = %s\n", i, JOBS[i]); in example2()
92 code = SendScilabJobs(JOBS, SizeJOBS); in example2()
117 if (JOBS[i]) in example2()
119 free(JOBS[i]); in example2()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/call_scilab/examples/call_scilab/c/visual_studio/
H A DCallsciC.c99 char **JOBS = NULL; in example3() local
110 strcpy(JOBS[0], "A=1 .."); in example3()
111 strcpy(JOBS[1], "+3;"); in example3()
112 strcpy(JOBS[2], "B = 8;"); in example3()
113 strcpy(JOBS[3], "+3;"); in example3()
114 strcpy(JOBS[4], "disp('C=');"); in example3()
115 strcpy(JOBS[5], "C=A+B;disp(C);"); /* C = 12 */ in example3()
117 code = SendScilabJobs(JOBS, SizeJOBS); in example3()
130 if (JOBS[i]) in example3()
132 free(JOBS[i]); in example3()
[all …]
/dports/multimedia/shotcut/shotcut-21.03.21/src/docks/
H A Djobsdock.cpp32 ui->treeView->setModel(&JOBS); in JobsDock()
45 JOBS.cleanup(); in ~JobsDock()
53 return JOBS.jobFromIndex(index); in currentJob()
58 QModelIndex index = JOBS.index(JOBS.rowCount() - 1, JobQueue::COLUMN_OUTPUT); in onJobAdded()
117 for (auto job : JOBS.jobs()) { in on_treeView_customContextMenuRequested()
130 AbstractJob* job = JOBS.jobFromIndex(index); in on_actionStopJob_triggered()
138 AbstractJob* job = JOBS.jobFromIndex(index); in on_actionViewLog_triggered()
150 JOBS.pause(); in on_pauseButton_toggled()
152 JOBS.resume(); in on_pauseButton_toggled()
185 JOBS.remove(index); in on_actionRemove_triggered()
[all …]
/dports/devel/allegro5/allegro5-5.2.7.0/misc/
H A Dcoverage.sh7 JOBS=${JOBS:-4}
35 make -j${JOBS} ex_blend_test
36 make -j${JOBS} ex_config
37 make -j${JOBS} ex_dir
38 make -j${JOBS} ex_path_test
39 make -j${JOBS} ex_utf8
40 make -j${JOBS} copy_example_data copy_demo_data
51 make -j${JOBS} run_tests
/dports/games/0ad/0ad-0.0.23b-alpha/build/workspaces/
H A Dupdate-workspaces.sh19 JOBS=${JOBS:="-j2"}
51 -j* ) JOBS=$i ;;
83 (cd ../../libraries/source/fcollada/src && ${MAKE} ${JOBS}) || die "FCollada build failed"
86 …(cd ../../libraries/source/spidermonkey && MAKE=${MAKE} JOBS=${JOBS} ./build.sh) || die "SpiderMon…
90 …(cd ../../libraries/source/nvtt && MAKE=${MAKE} JOBS=${JOBS} ./build.sh) || die "NVTT build failed"
110 ${MAKE} -C $PREMAKE_BUILD_DIR ${JOBS} || die "Premake build failed"
/dports/devel/flatbuffers/flatbuffers-2.0.0/tests/docker/
H A Dcpp_test.run.sh3 JOBS=${JOBS:-1}
6 export MAKEFLAGS="-j$JOBS"
10 echo "Build Flatbuffers project for '$config' with jobs=$JOBS"
14 cmake --build . --target all --clean-first -- -j$JOBS
15 ctest --extra-verbose --output-on-failure -j$JOBS
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/google/flatbuffers/tests/docker/
H A Dcpp_test.run.sh3 JOBS=${JOBS:-1}
6 export MAKEFLAGS="-j$JOBS"
10 echo "Build Flatbuffers project for '$config' with jobs=$JOBS"
14 cmake --build . --target all --clean-first -- -j$JOBS
15 ctest --extra-verbose --output-on-failure -j$JOBS
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/flatbuffers/src/tests/docker/
H A Dcpp_test.run.sh3 JOBS=${JOBS:-1}
6 export MAKEFLAGS="-j$JOBS"
10 echo "Build Flatbuffers project for '$config' with jobs=$JOBS"
14 cmake --build . --target all --clean-first -- -j$JOBS
15 ctest --extra-verbose --output-on-failure -j$JOBS
/dports/editors/texworks/texworks-release-0.6.2/travis-ci/
H A Dget-dependencies.sh37 JOBS=$(grep '^processor' /proc/cpuinfo | wc -l)
56 print_info "Building hunspell (using ${JOBS} jobs)"
57 …{MXETARGET}/qt/bin:$PATH" PREFIX="${MXEDIR}/usr" TARGET="${MXETARGET}" JOBS="$JOBS" MXE_CONFIGURE_…
59 print_info "Building poppler (using ${JOBS} jobs)"
60 …{MXETARGET}/qt/bin:$PATH" PREFIX="${MXEDIR}/usr" TARGET="${MXETARGET}" JOBS="$JOBS" MXE_CONFIGURE_…
73 print_info "Building hunspell (using ${JOBS} jobs)"
74 …MXETARGET}/qt5/bin:$PATH" PREFIX="${MXEDIR}/usr" TARGET="${MXETARGET}" JOBS="$JOBS" MXE_CONFIGURE_…
76 print_info "Building poppler (using ${JOBS} jobs)"
77 …MXETARGET}/qt5/bin:$PATH" PREFIX="${MXEDIR}/usr" TARGET="${MXETARGET}" JOBS="$JOBS" MXE_CONFIGURE_…
/dports/security/s2n/s2n-tls-1.1.2/codebuild/bin/
H A Ds2n_codebuild.sh33 JOBS=8
36 if [[ $UNITS -gt $JOBS ]]; then
37 JOBS=$UNITS;
43 echo "Using $JOBS jobs for make..";
50 S2N_DEBUG=true make -j $JOBS valgrind
55 make -j $JOBS
60 …scan-build --status-bugs -o /tmp/scan-build make -j$JOBS; STATUS=$?; test $STATUS -ne 0 && cat /tm…
74 …STS" == "ALL" || "$TESTS" == "asan" ]]; then make clean; S2N_ADDRESS_SANITIZER=1 make -j $JOBS ; fi
/dports/multimedia/handbrake/HandBrake-1.4.2/scripts/
H A Dmingw-w64-build204 local FORCE JOBS LIST DISABLE_GDB OPTIND OPTSPEC OPTARRAY
206 JOBS=0
262 JOBS="${!OPTIND}"
263 if [[ ! "${JOBS}" =~ ^[0-9]*$ ]]; then
272 JOBS="${OPTARG#*=}"
273 if [[ ! "${JOBS}" =~ ^[0-9]*$ ]]; then
313 JOBS="${OPTARG}"
314 if [[ ! "${JOBS}" =~ ^[0-9]*$ ]]; then
360 [[ "${JOBS}" -eq 0 ]] && JOBS="${CPU_COUNT}"
363 echo "${NAME} ${VERSION} (${JOBS} job$([[ ${JOBS} -gt 1 ]] && echo 's'))"
[all …]
/dports/net/hostapd-devel/hostap-14ab4a816/tests/hwsim/
H A Dbuild.sh29 JOBS=`nproc`
31 JOBS=8
36 make QUIET=1 -j$JOBS
40 make QUIET=1 -j$JOBS > /dev/null
62 make QUIET=1 -j$JOBS hostapd hostapd_cli hlr_auc_gw
83 make QUIET=1 -j$JOBS
/dports/security/wpa_supplicant-devel/hostap-14ab4a816/tests/hwsim/
H A Dbuild.sh29 JOBS=`nproc`
31 JOBS=8
36 make QUIET=1 -j$JOBS
40 make QUIET=1 -j$JOBS > /dev/null
62 make QUIET=1 -j$JOBS hostapd hostapd_cli hlr_auc_gw
83 make QUIET=1 -j$JOBS
/dports/net-im/libquotient/libQuotient-0.6.8/lib/jobs/
H A Ddownloadfilejob.cpp46 qCWarning(JOBS) << "Couldn't open the file" << d->targetFile->fileName() in doPrepare()
52 qCWarning(JOBS) << "Couldn't open the temporary file" in doPrepare()
57 qCDebug(JOBS) << "Downloading to" << d->tempFile->fileName(); in doPrepare()
70 qCWarning(JOBS) << "Failed to allocate" << targetSize in onSentRequest()
84 qCWarning(JOBS) << "Unexpected empty chunk when downloading from" in onSentRequest()
101 qCWarning(JOBS) << "Failed to remove the target file placeholder"; in prepareResult()
105 qCWarning(JOBS) << "Failed to rename" << d->tempFile->fileName() in prepareResult()
111 qCDebug(JOBS) << "Saved a file as" << targetFileName(); in prepareResult()
/dports/net-im/spectral/libQuotient-58dfe74390ebdd8ec6611d3b8fecfe7d051ff955/lib/jobs/
H A Ddownloadfilejob.cpp46 qCWarning(JOBS) << "Couldn't open the file" << d->targetFile->fileName() in doPrepare()
52 qCWarning(JOBS) << "Couldn't open the temporary file" in doPrepare()
57 qCDebug(JOBS) << "Downloading to" << d->tempFile->fileName(); in doPrepare()
70 qCWarning(JOBS) << "Failed to allocate" << targetSize in onSentRequest()
84 qCWarning(JOBS) << "Unexpected empty chunk when downloading from" in onSentRequest()
101 qCWarning(JOBS) << "Failed to remove the target file placeholder"; in parseReply()
105 qCWarning(JOBS) << "Failed to rename" << d->tempFile->fileName() in parseReply()
111 qCDebug(JOBS) << "Saved a file as" << targetFileName(); in parseReply()
/dports/emulators/qemu-cheri/qemu-0a323821042c36e21ea80e58b9545dfc3b0cb8ef/
H A D.gitlab-ci-opensbi.yml54 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
55 - echo "=== Using ${JOBS} simultaneous jobs ==="
56 - make -j${JOBS} -C roms/opensbi clean
57 …- make -j${JOBS} -C roms opensbi32-virt 2>&1 1>opensbi32-virt-stdout.log | tee -a opensbi32-virt-s…
58 - make -j${JOBS} -C roms/opensbi clean
59 …- make -j${JOBS} -C roms opensbi64-virt 2>&1 1>opensbi64-virt-stdout.log | tee -a opensbi64-virt-s…
60 - make -j${JOBS} -C roms/opensbi clean
61 …- make -j${JOBS} -C roms opensbi32-sifive_u 2>&1 1>opensbi32-sifive_u-stdout.log | tee -a opensbi3…
62 - make -j${JOBS} -C roms/opensbi clean
63 …- make -j${JOBS} -C roms opensbi64-sifive_u 2>&1 1>opensbi64-sifive_u-stdout.log | tee -a opensbi6…
/dports/emulators/qemu-guest-agent/qemu-5.0.1/
H A D.gitlab-ci-opensbi.yml54 - export JOBS=$(($(getconf _NPROCESSORS_ONLN) + 1))
55 - echo "=== Using ${JOBS} simultaneous jobs ==="
56 - make -j${JOBS} -C roms/opensbi clean
57 …- make -j${JOBS} -C roms opensbi32-virt 2>&1 1>opensbi32-virt-stdout.log | tee -a opensbi32-virt-s…
58 - make -j${JOBS} -C roms/opensbi clean
59 …- make -j${JOBS} -C roms opensbi64-virt 2>&1 1>opensbi64-virt-stdout.log | tee -a opensbi64-virt-s…
60 - make -j${JOBS} -C roms/opensbi clean
61 …- make -j${JOBS} -C roms opensbi32-sifive_u 2>&1 1>opensbi32-sifive_u-stdout.log | tee -a opensbi3…
62 - make -j${JOBS} -C roms/opensbi clean
63 …- make -j${JOBS} -C roms opensbi64-sifive_u 2>&1 1>opensbi64-sifive_u-stdout.log | tee -a opensbi6…
/dports/devel/boost-docs/boost_1_72_0/libs/beast/tools/
H A Dbuild-and-test.sh21 JOBS=1
23 JOBS="2"
26 JOBS=$(lscpu -p | grep -v '^#' | sort -u -t, -k 2,4 | wc -l)
29 JOBS=$(sysctl -n hw.physicalcpu)
31 JOBS=1
114 -j${JOBS}
123 -j${JOBS}
131 -j${JOBS}
/dports/devel/boost-python-libs/boost_1_72_0/libs/beast/tools/
H A Dbuild-and-test.sh21 JOBS=1
23 JOBS="2"
26 JOBS=$(lscpu -p | grep -v '^#' | sort -u -t, -k 2,4 | wc -l)
29 JOBS=$(sysctl -n hw.physicalcpu)
31 JOBS=1
114 -j${JOBS}
123 -j${JOBS}
131 -j${JOBS}
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/libs/beast/tools/
H A Dbuild-and-test.sh21 JOBS=1
23 JOBS="2"
26 JOBS=$(lscpu -p | grep -v '^#' | sort -u -t, -k 2,4 | wc -l)
29 JOBS=$(sysctl -n hw.physicalcpu)
31 JOBS=1
115 -j${JOBS}
124 -j${JOBS}
132 -j${JOBS}
/dports/devel/boost-libs/boost_1_72_0/libs/beast/tools/
H A Dbuild-and-test.sh21 JOBS=1
23 JOBS="2"
26 JOBS=$(lscpu -p | grep -v '^#' | sort -u -t, -k 2,4 | wc -l)
29 JOBS=$(sysctl -n hw.physicalcpu)
31 JOBS=1
114 -j${JOBS}
123 -j${JOBS}
131 -j${JOBS}
/dports/devel/hyperscan/boost_1_75_0/libs/beast/tools/
H A Dbuild-and-test.sh21 JOBS=1
23 JOBS="2"
26 JOBS=$(lscpu -p | grep -v '^#' | sort -u -t, -k 2,4 | wc -l)
29 JOBS=$(sysctl -n hw.physicalcpu)
31 JOBS=1
115 -j${JOBS}
124 -j${JOBS}
132 -j${JOBS}

12345678910>>...54