search for: candidates

Displaying 20 results from an estimated 5922 matches for "candidates".

2012 Oct 11
2
survey package question
...didate (e.g., candidate 1 =322, candidate 2=122, candidate 3= 89) The initial sampling design is: 1) selection of 5 polling stations PPS (based on number of voters) 2) selection of 10 voting units (SRS) I am interested in estimating the proportion of votes by candidate (let's assume we have 3 candidates). My naive estimate would be: votes for candidate 1 / all valid votes = proportion e.g. candidate 1= 2132 / 10874= .1906 candidate 2= 5323 / 10874= .4895 candidate 3= 3419 / 10874= .3144 In this case, the unit of analysis is voters (or votes). If I specify the sampling design using the survey...
2023 Aug 23
1
ICE Candidate collision on dualstack hosts?
Hi I'm attempting to use ICE to be able to present all possible RTP transports to peers. 16.28.0~dfsg-0+deb11u2 (I know it's old, but unfortunately Asterisk was removed from debian 'stable' and the version in 'sid' is just broken (opus + voicemail don't work anymore). But I ran into an issue when the peer is running rtpengine: Asterisk offers: a=candidate:H9da13901
2006 Jul 03
1
how to get value from the post on the List page
Hi, I''m new to Rails. I''m building a candidates tracking system for recruiting. I have a List page, but instead of listing every candidate, I only wanted to list the candidates in certain statuses. The first time List page is hit, by default, it lists candidates in status < 9. But on the List page, there is a dropdown where all the statuses...
2019 Apr 17
2
IPv6 transport results in ICE with only IPv6 candidates
...ode = none disallow = all allow = all rtp_symmetric = yes force_rport = yes rewrite_contact = yes direct_media = no language = en aors = outgoing t38_udptl = yes t38_udptl_ec = none ice_support=yes transport=transport-tcp-ipv6 But this seems to result in SDP payloads with ICE not offering any IPv4 candidates: v=0 o=- 508048280 508048280 IN IP6 2001:1234:5678:abcd::2 s=Asterisk c=IN IP6 2001:1234:5678:abcd::2 t=0 0 m=audio 14384 RTP/AVP 4 0 8 3 111 112 5 10 118 7 18 110 117 119 97 9 102 115 116 107 a=ice-ufrag:6eea7b135aa990d714a67931034ac864 a=ice-pwd:0494fccd28b93f8a2b544b4741203e4f a=candidate:H67c3...
2011 Jan 14
1
[LLVMdev] Building Boost library failed with Clang 2.9
I tried building boost 1.45 release with clang 2.9 following instructions on http://blog.llvm.org/2010/05/clang-builds-boost.html but got the following result: $ clang++ --version clang version 2.9 (trunk 123420) Target: x86_64-apple-darwin10 Thread model: posix $ ./bjam toolset=clang Building the Boost C++ Libraries. Performing configuration checks - has_icu builds : no
2007 Oct 10
11
Opinions on Release Numbering
...ventually decide on will determine how we manage the 1.6 version of Asterisk. I will be posting much more detailed information about 1.6 in the near future. What I'm looking for right now is some opinions on version numbering. Part of the working plan for Asterisk 1.6 involves making release candidates for every 1.6.X release, so that various community members can help with doing regression testing on the changes before making the release. I proposed calling the release candidates 1.6.3-rc1, 1.6.3-rc2, etc. Another proposal has been using 1.5 to indicate that it is a release candidate. For exa...
2010 Sep 14
3
[LLVMdev] Announcing: LLVM 2.8 Release Candidate 2 Tagging Tonight
Important Announcement Release testing of Release Candidate 1 is finished. I'll be tagging Release Candidate 2 tonight. If there are any fixes you want in, please get them approved as soon as possible. After this tag, the only patches that will be accepted will be those that fix regressions from 2.7 -bw -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Dec 07
3
Asterisk / VOIP Employment Opportunity
Dear All, I am based in Australia and have a client looking to hire a VOIP Specialist with Asterisk experience to join their technical/engineering team. The company specialise in providing corporate and government grade data comms solutions. They are moving into the VOIP space, hence the need for the Asterisk/VOIP specialist. Would anyone be keen to explore this opportunity of working in
2016 Dec 19
0
opt -instcombine interesting behavior
> %reg = alloca i32, i32 0 Allocating 0 bytes is legal but it's an undefined behavior, please refer: http://llvm.org/docs/LangRef.html#id184 You need to correct allocation to get the desired output, i.e.: > %reg = alloca i32, i32 1 Regards, Ashutosh > -----Original Message----- > From: llvm-dev [mailto:llvm-dev-bounces at lists.llvm.org] On Behalf Of > Stephan Plöger via
2014 Apr 24
2
[LLVMdev] How to get debug dump of candidate pairs selected in BBVectorizer?
Hi All, I'm trying to understand BB Vectorizer and gone through http://llvm.org/devmtg/2012-04-12/Slides/Hal_Finkel.pdf Wanted to know how to use bb-vectorize-debug-candidate-selection and bb-vectorize-debug-pair-selection command arguments. I tried the command with debug build clang - clang -O2 test.c -mllvm -vectorize \ -mllvm -debug-only=bb-vectorize \ -mllvm
2010 Sep 15
3
[LLVMdev] Announcing: LLVM 2.8 Release Candidate 2 Tagging Tonight
...Graef wrote: > Bill Wendling wrote: >> Release testing of Release Candidate 1 is finished. I'll be tagging >> Release Candidate 2 tonight. If there are any fixes you want in, please >> get them approved as soon as possible. > > Are there any tarballs for the release candidates available? Tanya used > to make these available for previous releases, but I haven't been able > to find any for testing 2.8. > I created tags instead of tarballs. You can use the llvm/utils/release/test-release.sh script to download and build the releases. -bw
2011 Jun 03
3
Not missing at random
...rix   pMiss <- 30     ####percent of missing values   N <- dim(x)[1]   ####number of cases   candidate<-which(x[,1]<3 | x[,2]<3 | x[,3]<3 | x[,4]<3 | x[,5]<3 | x[,6]<3 | x[,7]<3)    #### I want to sample all cases with at least 1 value lower than 3, so I have to find candidates   idMiss <- sample(candidate, N * p / 100)    #### I sampled cases   Any suggestion?   Thanks, Blaž [[alternative HTML version deleted]]
2016 Dec 19
3
opt -instcombine interesting behavior
Hi all, I've been playing around with the llvm optimizer and stumbled upon an interesting behavior with respect to the "instcombine" option. I tried to optimize the following small program (see also attachment small.ll) (only with "instcombine"): clang -v clang version 4.0.0 (trunk 288238) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /usr/local/bin
2016 Dec 19
1
opt -instcombine interesting behavior
> On Dec 19, 2016, at 9:51 AM, Nema, Ashutosh via llvm-dev <llvm-dev at lists.llvm.org> wrote: > >> %reg = alloca i32, i32 0 > Allocating 0 bytes is legal but it's an undefined behavior, please refer: > http://llvm.org/docs/LangRef.html#id184 <http://llvm.org/docs/LangRef.html#id184> Nit: I believe that when LangRef says “the result is undefined”, it does not
2014 Aug 25
0
WebRTC / Rejecting secure audio stream errors
...tion details: audio 54908 UDP/TLS/RTP/SAVPF 109 0 8 101 Specifically, it always happens from a Firefox 24 host but it works without this error from another host running Firefox 26 I did a diff on the SDP and couldn't see anything obviously different except one thing: Firefox 24 only has host candidates for ICE (TURN support was only added in Firefox 25). Is there any way that could cause this error though? It appears the encryption details are sufficient and do not otherwise differ between Firefox 24 and 26: --- ff-24.txt 2014-08-25 15:02:20.452383599 +0200 +++ ff-26.txt 2014-08-25 15:01:4...
2015 Mar 23
2
PJSIP - Video Support for WebRTC
Hey i have an interesting topic to discuss here. The main goal here is to be able to make a video call between two WebRTC endpoints registered on asterisk 13 it is a feature that definitely asterisk 13 should support . the problems that i faced with this is the following and i hope i could get an advise here. asterisk 13 vanilla version has some issues marking the video packets this complain
2015 Jul 20
2
[LLVMdev] [3.7 Release] RC1 has been tagged, Testing Phase I begins
On Sun, Jul 19, 2015 at 8:32 AM, Dimitry Andric <dimitry at andric.com> wrote: > On 19 Jul 2015, at 01:44, Dimitry Andric <dimitry at andric.com> wrote: > ... >> Hm, strangely enough, this version of the script does not go further than the Phase 2 installation, and does not run any tests? This used to work fine for the release_36 branch. >> >> I think it is
2006 Mar 20
2
AHHHhhhhh... has_and_belongs_to_many, that is going on?
...pt/console is giving me a headache: ./script/console Loading development environment. >> r = Reviewer.find_first => #<Reviewer:0x19d0a48 @attributes={"id"=>"1", "first_name"=>"Big", "last_name"=>"Bird"}> >> r.candidates => [#<Candidate:0x19c6340 @attributes={"status"=>"", "id"=>"1", "sponsor"=>"", "first_name"=>"Jim", "last_name"=>"Jeffrey", "reviewer_id"=>"1"}>, #<C...
2017 Jul 21
2
[RFC] Add IR level interprocedural outliner for code size.
...m for candidate pruning. - Currently supports X86, AArch64 targets. - Requires NoRedZone on supported targets. IR Outliner: - Builds a suffix array based upon relaxed equivalence between ir instrs. - Allows for inputs/outputs from an outlined function. - Complex verification of outlining candidates due to above two points(relaxed equivalency, inputs/outputs). - Tunable generic target independent cost model (estimates constant folded inputs, output condensing, etc.). - Note it uses the target info available (TargetTransformInfo) - Uses a greedy interval based algorithm for candidate...
2006 Sep 28
1
Comparing entire row sets at once efficiently
...but I need it in more dimensions. Here's a brief description. * given a set of factors or sequences, expand.grid() gives me the set of permutations in a data.frame; in my case all arguments are numeric so I could convert the data frame to a matrix let's call this one Candidates * I have a second matrix (or data frame) to compare to; this second set may be a subset of the first, or a superset but it guaranted to contain the same columns let's call this one Comparison * I want know which rows in Candidates are not yet in Comparison. A toy example:...