search for: joblist

Displaying 12 results from an estimated 12 matches for "joblist".

Did you mean: job_list
2013 May 08
0
Using the Sun Grid Engine with R-3.0
...I understand that the parallel package has been updated. What would be the equivalent to the lines below: require(Rsge) sge.options("sge.qsub.options"="-cwd -q GT -pe smp 8 -l C=2") sge.options("sge.save.global"=TRUE) sge.options("sge.remove.files"=TRUE) jobList = list( ....) myJobFunc = function(x) {....} result = sge.parLapply(jobList, myJobFunc, njobs=length(jobList)) Many thanks Hubert Rehrauer
2004 Dec 14
4
Samba 3.0.9 doesn't remove printjobs ?
Hello! I'm using samba with CUPS printing (with raw passthru) for a long time now and it worked very well. But after upgrading my samba installation from 3.0.2 to 3.0.9, the printjobs (sent from XP Workstations) aren't removed from the joblist anymore. Means: the job is printed correctly, but opening the printqueue on the XP machine still contains the job (not only mine, but jobs from every user who sent one). When I now delete them manually, they're gone. Since I can't find any remaining SMB or CUPS spool-files, (thought about...
2006 Jul 27
1
Update second pulldown menu based on first menu selection?
I know I''ve seen this somewhere on this board and just can''t search it anymore. I have three relational tables: clients, projects, and tasks. Currently I''m working on customizing the ''new/edit'' task _form. So far I have it listing clients in a pulldown menu so I can assign the new task to a client. I''d like to have a second pulldown select
2006 Apr 28
0
rq-2.3.2
...> export RQ_Q=queue ~ > rq list this facility can be used to create aliases for several queues, for example, a .bashrc containing alias MYQ="RQ_Q=/path/to/myq rq" alias MYQ2="RQ_Q=/path/to/myq2 rq" would allow syntax like MYQ2 submit < joblist MODES rq operates in modes create, submit, resubmit, list, status, delete, update, query, execute, configure, snapshot, lock, backup, rotate, feed, recover, ioview, and help, and a few others. the meaning of ''mode_args'' will naturally change depending on the mode of...
2006 Jun 08
0
rq-2.3.3
...> export RQ_Q=queue ~ > rq list this facility can be used to create aliases for several queues, for example, a .bashrc containing alias MYQ="RQ_Q=/path/to/myq rq" alias MYQ2="RQ_Q=/path/to/myq2 rq" would allow syntax like MYQ2 submit < joblist MODES rq operates in modes create, submit, resubmit, list, status, delete, update, query, execute, configure, snapshot, lock, backup, rotate, feed, recover, ioview, and help, and a few others. the meaning of ''mode_args'' will naturally change depending on the mode of...
2004 Dec 15
4
Re-2: Samba 3.0.9 doesn't remove printjobs ?
...o! > > I'm using samba with CUPS printing (with raw passthru) > > for a long time now and it worked very well. > > > > But after upgrading my samba installation from 3.0.2 to 3.0.9, > > the printjobs (sent from XP Workstations) aren't > > removed from the joblist anymore. > > Means: the job is printed correctly, but opening the > > printqueue on the XP machine still contains the job > > (not only mine, but jobs from every user who sent one). > > When I now delete them manually, they're gone. > > > > Since I can't...
2010 Aug 18
1
[LLVMdev] clang: call extern function using JIT
...Args.data())); if (!C) return 0; // FIXME: This is copied from ASTUnit.cpp; simplify and eliminate. // We expect to get back exactly one command job, if we didn't something // failed. Extract that job from the compilation. const driver::JobList &Jobs = C->getJobs(); if (Jobs.size() != 1 || !isa<driver::Command>(Jobs.begin())) { llvm::SmallString<256> Msg; llvm::raw_svector_ostream OS(Msg); C->PrintJob(OS, C->getJobs(), "; ", true); Diags.Report(diag::err_fe_expected_compiler_job) <&l...
2004 Dec 22
0
Re-4: Samba 3.0.9 doesn't remove printjobs ?
...t; > > >>now and it worked very well. > > > > >> > > > > >>But after upgrading my samba installation from 3.0.2 to > > 3.0.9, the > > > > >>printjobs (sent from XP Workstations) aren't removed from > > > > the joblist > > > > >>anymore. > > > > >>Means: the job is printed correctly, but opening the > > > > printqueue on the > > > > >>XP machine still contains the job (not only mine, but jobs > > > > from every > > > > >&...
2010 Aug 18
0
[LLVMdev] clang: call extern function using JIT
I tried what you said, now I get: LLVM ERROR: Program used external function 'yipee' which could not be resolved! Stack dump: 0. Running pass 'X86 Machine Code Emitter' on function '@main' did not even get as far as a breakpoint. Óscar Fuentes wrote: > > gafferuk <gafferuk at gmail.com> writes: > >> Im confused. The function i wish to call is
2010 Aug 18
2
[LLVMdev] clang: call extern function using JIT
gafferuk <gafferuk at gmail.com> writes: > Im confused. The function i wish to call is a return type of int. > Im calling it with int dd = yipee(1); > > What's wrong? Declare the function: int yipee(int); int main() { int dd = yipee(1); return 0; } If that still crashes, put a breakpoint on `yipee' and see if the execution gets there, if the argument is
2013 Oct 03
0
[LLVMdev] libclang JIT frontend
...r<Compilation> C(TheDriver.BuildCompilation(Args)); if (!C) return 0; // FIXME: This is copied from ASTUnit.cpp; simplify and eliminate. // We expect to get back exactly one command job, if we didn't something // failed. Extract that job from the compilation. const driver::JobList &Jobs = C->getJobs(); if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) { SmallString<256> Msg; llvm::raw_svector_ostream OS(Msg); C->PrintJob(OS, C->getJobs(), "; ", true); Diags.Report(diag::err_fe_expected_compiler_job) << OS...
2020 Jan 30
21
[10.0.0 Release] Release Candidate 1 is here
Hello everyone, It took a bit longer than planned due to master being a somewhat unstable at the branch point, but Release Candidate 1 has now been tagged as llvmorg-10.0.0-rc1. Source code and docs are available at https://prereleases.llvm.org/10.0.0/#rc1 Pre-built binaries will be added there as they become available. Please file bug reports for any issues you find as blockers of