search for: act

Displaying 20 results from an estimated 11326 matches for "act".

Did you mean: ac
2006 Oct 25
2
SIP problem - ACT p160s error
I have a setup with a polycom 601 and an act p160s. All on local segment, no NAT. Can call the act p160s, from the polycom, rings, connects, and a conversation can take place. The reverse is not true, Dialing from the act to the polycom does not work. SIP debug shows, at the end, "Incoming call: got sip response 416 "unsupport...
2009 Oct 04
2
Row to Column help
...from rows to columns but am stuck. I have tried using reshape() with little luck, possibly due to the categorical nature of the data. For example: id<-c(1,2,2,3,3,3) author<-c("j","k","k","l","l","l") tmt<-c("cbt","act","dbt","act","act","cbt") alliance<-c("wai","other","calpas","wai","itas","other") data<-as.data.frame(cbind(id,author,tmt,alliance)) > data id author tmt alliance 1 1 j c...
2012 May 25
0
[PATCH 3/3] gnttab: cleanup
...e not yet set up"); /* Bounds check on the grant ref */ - if ( unlikely(op->ref >= nr_grant_entries(rd->grant_table))) + if ( unlikely(op->ref >= nr_grant_entries(rgt))) PIN_FAIL(unlock_out, GNTST_bad_gntref, "Bad ref (%d).\n", op->ref); - act = &active_entry(rd->grant_table, op->ref); - shah = shared_entry_header(rd->grant_table, op->ref); - if (rd->grant_table->gt_version == 1) { - sha1 = &shared_entry_v1(rd->grant_table, op->ref); + act = &active_entry(rgt, op->ref); + shah = s...
2014 Apr 23
0
Something went wrong
http://secret-brushlands-1375.herokuapp.com/users/sign_up Not sure why all of a sudden I am getting this error message when I try to save a new user - Here is the log file: C:\rails_projects\store4>heroku logs 2014-04-23T21:35:54.918695+00:00 app[web.1]: vendor/bundle/ruby/2.0.0/gems/act ivesupport-4.1.0/lib/active_support/callbacks.rb:113:in `call' 2014-04-23T21:35:54.918698+00:00 app[web.1]: vendor/bundle/ruby/2.0.0/gems/act ivesupport-4.1.0/lib/active_support/callbacks.rb:229:in `call' 2014-04-23T21:35:54.918696+00:00 app[web.1]: vendor/bundle/ruby/2.0.0/gems/act ivesupp...
2002 Sep 28
1
ACT 2000 and Windows XP problem
Hello to All! I've got a problem moving my ACT 2000 database from WinXP to Samba server on Linux. All clients are WinXP systems, Samba 2.2.5 runs on Debian Linux, 2.4.18 kernel. I have a share with ACT database which is connected to all WinXP systems as a mapped network drive. The first client starts ACT successfuly but when I try to launch ACT...
2023 Apr 03
1
[PATCH net-next 3/8] virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdp
...VIRTNET_XDP_RES_DROP, > + /* packet is consumed by xdp. the caller needs to do nothing. */ > + VIRTNET_XDP_RES_CONSUMED, > +}; I'd prefer this to be done on top unless it is a must. But I don't see any advantage of introducing this, it's partial mapping of XDP action and it needs to be extended when XDP action is extended. (And we've already had: VIRTIO_XDP_REDIR and VIRTIO_XDP_TX ...) > + > static void virtnet_rq_free_unused_buf(struct virtqueue *vq, void *buf); > static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf); >...
2013 Apr 29
3
Counting number of consecutive occurrences per rows
...structure(c(1266258354, 1266258954, 1266259554, 1266260154, 1266260754, 1266261354, 1266261954, 1266262554, 1266263154, 1266263754, 1266264354, 1266264954, 1266265554, 1266266154, 1266266754, 1266267354), class = c("POSIXct", "POSIXt"), tzone = "GMT"), act = c(130, 23, 45, 200, 200, 200, 199, 150, 0, 0, 0, 0, 34, 200, 200, 145), day = c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0)), .Names = c("jul", "time", "act", "day" ), class = "data.frame", row.names = c(510L, 512L, 514L, 516L, 518L, 5...
2012 Mar 30
4
Trying to understand factors
I'm trying to figure out about factors, however the on-line documentation is rather sparse. I guess, factors are intended for grouping arrays members into categories, which R names "Levels". And so we have: * state <- c("tas", "sa", "qld", "nsw", "nsw", "nt&quot...
2018 Sep 06
2
[PATCH net-next 06/11] tuntap: split out XDP logic
...ld_skb(struct tun_struct *tun, struct tun_file *tfile, > return true; > } > > +static u32 tun_do_xdp(struct tun_struct *tun, > + struct tun_file *tfile, > + struct bpf_prog *xdp_prog, > + struct xdp_buff *xdp, > + int *err) > +{ > + u32 act = bpf_prog_run_xdp(xdp_prog, xdp); > + > + switch (act) { > + case XDP_REDIRECT: > + *err = xdp_do_redirect(tun->dev, xdp, xdp_prog); > + xdp_do_flush_map(); > + if (*err) > + break; > + goto out; > + case XDP_TX: > + *err = tun_xdp_tx(tun->dev, xdp); >...
2018 Sep 06
2
[PATCH net-next 06/11] tuntap: split out XDP logic
...ld_skb(struct tun_struct *tun, struct tun_file *tfile, > return true; > } > > +static u32 tun_do_xdp(struct tun_struct *tun, > + struct tun_file *tfile, > + struct bpf_prog *xdp_prog, > + struct xdp_buff *xdp, > + int *err) > +{ > + u32 act = bpf_prog_run_xdp(xdp_prog, xdp); > + > + switch (act) { > + case XDP_REDIRECT: > + *err = xdp_do_redirect(tun->dev, xdp, xdp_prog); > + xdp_do_flush_map(); > + if (*err) > + break; > + goto out; > + case XDP_TX: > + *err = tun_xdp_tx(tun->dev, xdp); >...
2023 Apr 04
1
[PATCH net-next 3/8] virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdp
...caller needs to do nothing. */ > > > > + VIRTNET_XDP_RES_CONSUMED, > > > > +}; > > > > > > I'd prefer this to be done on top unless it is a must. But I don't see > > > any advantage of introducing this, it's partial mapping of XDP action > > > and it needs to be extended when XDP action is extended. (And we've > > > already had: VIRTIO_XDP_REDIR and VIRTIO_XDP_TX ...) > > > > No, these are the three states of buffer after XDP processing. > > > > * PASS: goto make skb > > XDP_PA...
2008 Jan 08
0
9 commits - configure.ac test/custom test/Makefile.am test/swfdec_test_initialize.as test/swfdec_test_initialize.h test/swfdec_test_test.c test/trace
...wfdec_test_initialize.h | 58 +- test/swfdec_test_test.c | 55 ++ test/trace/.gitignore | 10 test/trace/Makefile.am | 17 test/trace/button-events-button-5.swf.act | 17 test/trace/button-events-button-5.swf.trace | 60 -- test/trace/button-events-button-6.swf.act | 17 test/trace/button-events-button-6.swf.trace | 68 --- test/trace/button-events-button-7.swf.act | 17 test/t...
2007 Feb 20
3
Asterisk / ACT CRM Integration
Has anyone ever been party to an integration of ACT CRM platform with Asterisk? Thanks Cory Andrews
2002 Jun 05
3
Act! database on a Samba server
Does anyone have experience with getting an Act! database working without corruption on a Samba server? I had five users in an Act! database where I was getting pretty regular corruption, even after adding "oplocks = no" to the share. We have since moved the database onto a Win 2000 machine, but we would rather have it back on the Samb...
2023 Apr 04
1
[PATCH net-next 3/8] virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdp
...g. */ > > > > > + VIRTNET_XDP_RES_CONSUMED, > > > > > +}; > > > > > > > > I'd prefer this to be done on top unless it is a must. But I don't see > > > > any advantage of introducing this, it's partial mapping of XDP action > > > > and it needs to be extended when XDP action is extended. (And we've > > > > already had: VIRTIO_XDP_REDIR and VIRTIO_XDP_TX ...) > > > > > > No, these are the three states of buffer after XDP processing. > > > > > > * PASS:...
2007 Oct 03
0
[PATCH 3/3] TLB flushing and IO memory mapping
...common/grant_table.c Wed Jul 25 14:03:08 2007 +0100 +++ b/xen/common/grant_table.c Mon Jul 30 10:28:27 2007 +0100 @@ -199,6 +199,7 @@ __gnttab_map_grant_ref( int handle; unsigned long frame = 0; int rc = GNTST_okay; + int is_iomem = 0; struct active_grant_entry *act; struct grant_mapping *mt; grant_entry_t *sha; @@ -327,34 +328,52 @@ __gnttab_map_grant_ref( spin_unlock(&rd->grant_table->lock); - if ( unlikely(!mfn_valid(frame)) || - unlikely(!((op->flags & GNTMAP_readonly) ? -...
2002 Feb 19
3
Locking Options. - ACT Database
I am trying to share an ACT 2000 database on a Samba shared network drive. Act does not currently support Samba shared networking but they do not see any reason why it should not work. Is anyone else out there using ACT in a multi-user environment over a Samba shared drive? If so what settings are you using for the "o...
2023 Apr 04
1
[PATCH net-next 3/8] virtio_net: introduce virtnet_xdp_handler() to seprate the logic of run xdp
...IRTNET_XDP_RES_CONSUMED, > > > > > > > +}; > > > > > > > > > > > > I'd prefer this to be done on top unless it is a must. But I don't see > > > > > > any advantage of introducing this, it's partial mapping of XDP action > > > > > > and it needs to be extended when XDP action is extended. (And we've > > > > > > already had: VIRTIO_XDP_REDIR and VIRTIO_XDP_TX ...) > > > > > > > > > > No, these are the three states of buffer after XDP processing...
2020 Aug 28
0
[klibc:ia64-signal-fix] signal: Move rt_sigaction() argument mangling to arch directories
...s/klibc/klibc.git;a=commit;h=77c7ccc993d605eb7f6bef511017d28c1bb2d7e7 Author: Ben Hutchings <ben at decadent.org.uk> AuthorDate: Fri, 28 Aug 2020 19:21:47 +0100 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Fri, 28 Aug 2020 19:52:24 +0100 [klibc] signal: Move rt_sigaction() argument mangling to arch directories On alpha, sparc, and sparc64, the rt_sigaction() system call takes an additional parameter. Define another wrapper function on those architectures to handle this, instead of doing it directly in sigaction(). This is preparation for fixing signal handlin...
2010 Mar 18
3
Using indexing to manipulate data
...one of R's advantages is it's ability to index, eliminating the need for control loops to select relevant data, so I thought this problem would be easy. I can't crack it. I have looked through past postings, but nothing seems to match this problem I have a data set with one column of actors and one column of acts. I need a list that will give me a pair of actors in each row, provided they both participated in the act. Example: The Data looks like this: Jim A Bob A Bob C Larry D Alice C Tom F Tom D Tom A Alice B Nancy B...