Displaying 14 results from an estimated 14 matches for "twork".
Did you mean:
work
2006 Jun 22
1
acts_as_taggable gem problems
...ach do |t| %>
<li><%= t.freq %> <%= t.name %></li>
<% end %>
</ul>
According to the acts_as_taggable gem rdocs
(ActiveRecord::Acts::Taggable::ClassMethods) I should be using
Issues.tags_count, but I get a NoMethodError. Any ideas? This
doesn''twork in the console either.
(I''ve since opened up taggable.rb and taken a look at the sql
involved. I have figured out the sql to do this in MS SQLserver to
give me the correct results, but this still doesn''t solve the
NoMethodError)
2. I cannot add tags to my models via my UI...
2011 Sep 02
0
No subject
...intable
Hi,<div><br></div><div><b><u>Scenario 1</u></b></div><div>I am trying to re=
gister a VoIP trunk, which is keep on sending the register request and I am=
not getting any response from the SIP Server, this I am trying from one ne=
twork.</div>
<div><br></div><div><b><u>Scenario 2</u></b></div><div>From another network=
if I try the same VoIP trunk, the account got registered.=A0</div><div><br=
></div><div>One thing here to notice is t...
2010 Aug 07
2
Stuttering sound
...dge
(rev
04)
00:1f.2 IDE interface: Intel Corporation 82801FBM (ICH6M) SATA Controller
(rev 0
4)
01:00.0 VGA compatible controller: ATI Technologies Inc M24 [Radeon Mobility
X60
0]
02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8036 PCI-E
Fast Et
hernet Controller (rev 10)
06:04.0 Network controller: Intel Corporation PRO/Wireless 2200BG
[Calexico2] Ne
twork Connection (rev 05)
06:06.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller
06:06.1 FireWire (IEEE 1394): Texas Instruments PCIxx12 OHCI Compliant IEEE
1394
Host Controller
06:06.2 Mass storage controller: Texas In...
2005 Jul 25
2
R Cocoa GUI 1.12 (R 2.1.1 Framework) crashes on acf() (PR#8032)
After I upgraded my installation of R for OS X (Tiger) to 1.12, it
consistently crashes when calling the function acf() [stats lib].
Roberto Osorio
2019 Aug 23
2
Non Samba question
...g/html/rfc2606
https://tools.ietf.org/html/rfc6761
https://en.wikipedia.org/wiki/.local
https://tools.ietf.org/html/rfc6762
Other good articals with examples, ( must read )
https://social.technet.microsoft.com/wiki/contents/articles/34981.active-directory-best-practices-for-internal-domain-and-network-names.aspx
And a security consideration: https://www.us-cert.gov/ncas/alerts/TA16-144A (Leaking DNS info)
This is a must read :
https://support.microsoft.com/en-us/help/909264/naming-conventions-in-active-directory-for-computers-domains-sites-and
And looking at table 6.2 here:
https://docs....
2020 Jun 16
0
[PATCH v5 2/2] mm, treewide: Rename kzfree() to kfree_sensitive()
....c
index 0f72e9abdefe..a15245992cf9 100644
--- a/drivers/crypto/cavium/cpt/cptvf_main.c
+++ b/drivers/crypto/cavium/cpt/cptvf_main.c
@@ -74,7 +74,7 @@ static void cleanup_worker_threads(struct cpt_vf *cptvf)
for (i = 0; i < cptvf->nr_queues; i++)
tasklet_kill(&cwqe_info->vq_wqe[i].twork);
- kzfree(cwqe_info);
+ kfree_sensitive(cwqe_info);
cptvf->wqe_info = NULL;
}
@@ -88,7 +88,7 @@ static void free_pending_queues(struct pending_qinfo *pqinfo)
continue;
/* free single queue */
- kzfree((queue->head));
+ kfree_sensitive((queue->head));
queue->front...
2020 Apr 13
0
[PATCH 1/2] mm, treewide: Rename kzfree() to kfree_sensitive()
....c
index 0f72e9abdefe..a15245992cf9 100644
--- a/drivers/crypto/cavium/cpt/cptvf_main.c
+++ b/drivers/crypto/cavium/cpt/cptvf_main.c
@@ -74,7 +74,7 @@ static void cleanup_worker_threads(struct cpt_vf *cptvf)
for (i = 0; i < cptvf->nr_queues; i++)
tasklet_kill(&cwqe_info->vq_wqe[i].twork);
- kzfree(cwqe_info);
+ kfree_sensitive(cwqe_info);
cptvf->wqe_info = NULL;
}
@@ -88,7 +88,7 @@ static void free_pending_queues(struct pending_qinfo *pqinfo)
continue;
/* free single queue */
- kzfree((queue->head));
+ kfree_sensitive((queue->head));
queue->front...
2020 Jun 16
0
[PATCH v4 2/3] mm, treewide: Rename kzfree() to kfree_sensitive()
....c
index 0f72e9abdefe..a15245992cf9 100644
--- a/drivers/crypto/cavium/cpt/cptvf_main.c
+++ b/drivers/crypto/cavium/cpt/cptvf_main.c
@@ -74,7 +74,7 @@ static void cleanup_worker_threads(struct cpt_vf *cptvf)
for (i = 0; i < cptvf->nr_queues; i++)
tasklet_kill(&cwqe_info->vq_wqe[i].twork);
- kzfree(cwqe_info);
+ kfree_sensitive(cwqe_info);
cptvf->wqe_info = NULL;
}
@@ -88,7 +88,7 @@ static void free_pending_queues(struct pending_qinfo *pqinfo)
continue;
/* free single queue */
- kzfree((queue->head));
+ kfree_sensitive((queue->head));
queue->front...
2020 Jun 16
3
[PATCH v5 0/2] mm, treewide: Rename kzfree() to kfree_sensitive()
v5:
- Break the btrfs patch out as a separate patch to be processed
independently.
- Update the commit log of patch 1 to make it less scary.
- Add a kzfree backward compatibility macro in patch 2.
v4:
- Break out the memzero_explicit() change as suggested by Dan Carpenter
so that it can be backported to stable.
- Drop the "crypto: Remove unnecessary
2020 Jun 16
14
[PATCH v4 0/3] mm, treewide: Rename kzfree() to kfree_sensitive()
v4:
- Break out the memzero_explicit() change as suggested by Dan Carpenter
so that it can be backported to stable.
- Drop the "crypto: Remove unnecessary memzero_explicit()" patch for
now as there can be a bit more discussion on what is best. It will be
introduced as a separate patch later on after this one is merged.
This patchset makes a global rename of the kzfree()
2020 Jun 16
14
[PATCH v4 0/3] mm, treewide: Rename kzfree() to kfree_sensitive()
v4:
- Break out the memzero_explicit() change as suggested by Dan Carpenter
so that it can be backported to stable.
- Drop the "crypto: Remove unnecessary memzero_explicit()" patch for
now as there can be a bit more discussion on what is best. It will be
introduced as a separate patch later on after this one is merged.
This patchset makes a global rename of the kzfree()
2020 Apr 13
10
[PATCH 0/2] mm, treewide: Rename kzfree() to kfree_sensitive()
This patchset makes a global rename of the kzfree() to kfree_sensitive()
to highlight the fact buffer clearing is only needed if the data objects
contain sensitive information like encrpytion key. The fact that kzfree()
uses memset() to do the clearing isn't totally safe either as compiler
may compile out the clearing in their optimizer. Instead, the new
kfree_sensitive() uses
2015 Mar 18
0
vacancy for R Programmer - Thanks for the publication
...time;
Offer:
Competitive reward
Contract type to be discussed
Freelance offers will not be retained
Figures to Facts offices are located in Belgium, Ninove (+/- 25km from
Brussels).
Interested? Don't hesitate to send a statement of interest and CV to
<mailto:veronique.tack at beeatwork.be> veronique.tack at beeatwork.be. Mention
FIGURES TO FACTS in the subject.
[[alternative HTML version deleted]]
2018 May 24
2
Problem with adding a raster and a brick
Hi,
I seem to be having a problem adding the following two raster objects
together - one is a rasterLayer, the other is a rasterBrick. The extent,
resolution, and origin are the same, so according to my understand it
should work. The objects look like so:
> obs.clim
class : RasterLayer
dimensions : 60, 200, 12000 (nrow, ncol, ncell)
resolution : 0.5, 0.5 (x, y)
extent : -70,