Displaying 20 results from an estimated 46 matches for "46,4".
Did you mean:
41,4
2007 May 08
3
assert_difference eval magic in [6693]
I just saw Marcel''s change to assert_difference that changes the
method API to take a string param that is evaled in a lambda.
http://dev.rubyonrails.org/changeset/6693
I much preferred the old API, since it''s simple enough to pass a
lambda. Passing a string means the lambda is in the wrong scope and
doesn''t have access to objects in the test case scope.
For an
2016 Mar 04
2
[PATCH 0/2] enable memory reclocking on maxwell1
A quick look over the memory reclocking part inside the maxwell mmiotraces
kind of reminded me of the kepler memory reclocking, it looks for most parts
the same.
I didn't do a deep inspection so treat this with great care, but it seems to
work at least on those maxwell gpus this was tested on.
It depends on the PMU fixes for the fuc5 though, otherwise the PMU might not
work as expected and
2016 Nov 09
0
[PATCH v2 4/6] New API: internal_yara_scan
...the loaded yara rules";
+ longdesc = "Internal function for yara_scan." };
+
]
(* Non-API meta-commands available only in guestfish.
diff --git a/generator/structs.ml b/generator/structs.ml
index 029bc3a..3fa2ebc 100644
--- a/generator/structs.ml
+++ b/generator/structs.ml
@@ -468,6 +468,15 @@ let structs = [
];
s_camel_name = "TSKDirent" };
+ (* Yara detection information. *)
+ { defaults with
+ s_name = "yara_detection";
+ s_cols = [
+ "name", FString;
+ "rule", FString;
+ ];
+ s_camel_name = "Ya...
2017 Apr 24
0
[PATCH v8 6/8] New API: internal_yara_scan
...uot;;
473, "yara_destroy";
+474, "internal_yara_scan";
]
(* End of list. If adding a new entry, add it at the end of the list
diff --git a/generator/structs.ml b/generator/structs.ml
index c1c9b668e..834fa9c54 100644
--- a/generator/structs.ml
+++ b/generator/structs.ml
@@ -469,6 +469,15 @@ let structs = [
];
s_camel_name = "TSKDirent" };
+ (* Yara detection information. *)
+ { defaults with
+ s_name = "yara_detection";
+ s_cols = [
+ "yara_name", FString;
+ "yara_rule", FString;
+ ];
+ s_camel_name =...
2017 Apr 06
0
[PATCH v6 5/7] New API: internal_yara_scan
...uot;;
473, "yara_destroy";
+474, "internal_yara_scan";
]
(* End of list. If adding a new entry, add it at the end of the list
diff --git a/generator/structs.ml b/generator/structs.ml
index c1c9b668e..834fa9c54 100644
--- a/generator/structs.ml
+++ b/generator/structs.ml
@@ -469,6 +469,15 @@ let structs = [
];
s_camel_name = "TSKDirent" };
+ (* Yara detection information. *)
+ { defaults with
+ s_name = "yara_detection";
+ s_cols = [
+ "yara_name", FString;
+ "yara_rule", FString;
+ ];
+ s_camel_name =...
2017 Apr 04
0
[PATCH v5 5/7] New API: internal_yara_scan
...r_destroy (&xdr);
+
+ /* Send serialised yara_detection out. */
+ return send_file_write (buf, len);
+}
+
/* Clean up yara handle on daemon exit. */
void yara_finalize (void) __attribute__((destructor));
diff --git a/generator/actions_yara.ml b/generator/actions_yara.ml
index fe71d53f5..a5a46e8c7 100644
--- a/generator/actions_yara.ml
+++ b/generator/actions_yara.ml
@@ -48,4 +48,12 @@ but belonging to different files." };
longdesc = "\
Destroy previously loaded Yara rules in order to free libguestfs resources." };
+ { defaults with
+ name = "internal_yara_...
2011 Nov 15
1
[PATCH] virtio-mmio: Devices parameter parsing
...an option that must be explicitly enabled.
I hope it will be useful in DT-less qemu/KVM use cases.
All comments most welcomed!
Cheers!
Pawel
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index 816ed08..61f3a79 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -46,4 +46,29 @@ config VIRTIO_BALLOON
If unsure, say N.
+config VIRTIO_MMIO_CMDLINE_DEVICES
+ bool "Memory mapped virtio devices parameter parsing"
+ depends on VIRTIO_MMIO
+ ---help---
+ Allow virtio-mmio devices instantiation via the kernel command line
+ or module parameter. Be a...
2011 Nov 15
1
[PATCH] virtio-mmio: Devices parameter parsing
...an option that must be explicitly enabled.
I hope it will be useful in DT-less qemu/KVM use cases.
All comments most welcomed!
Cheers!
Pawel
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index 816ed08..61f3a79 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -46,4 +46,29 @@ config VIRTIO_BALLOON
If unsure, say N.
+config VIRTIO_MMIO_CMDLINE_DEVICES
+ bool "Memory mapped virtio devices parameter parsing"
+ depends on VIRTIO_MMIO
+ ---help---
+ Allow virtio-mmio devices instantiation via the kernel command line
+ or module parameter. Be a...
2012 May 09
1
[PATCH] virtio-mmio: Devices parameter parsing
...es for multiple devices.
+
vga= [BOOT,X86-32] Select a particular video mode
See Documentation/x86/boot.txt and
Documentation/svga.txt.
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index 1a61939..f38b17a 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -46,4 +46,15 @@ config VIRTIO_BALLOON
If unsure, say N.
+config VIRTIO_MMIO_CMDLINE_DEVICES
+ bool "Memory mapped virtio devices parameter parsing"
+ depends on VIRTIO_MMIO
+ ---help---
+ Allow virtio-mmio devices instantiation via the kernel command line
+ or module parameters. Be...
2012 May 09
1
[PATCH] virtio-mmio: Devices parameter parsing
...es for multiple devices.
+
vga= [BOOT,X86-32] Select a particular video mode
See Documentation/x86/boot.txt and
Documentation/svga.txt.
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index 1a61939..f38b17a 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -46,4 +46,15 @@ config VIRTIO_BALLOON
If unsure, say N.
+config VIRTIO_MMIO_CMDLINE_DEVICES
+ bool "Memory mapped virtio devices parameter parsing"
+ depends on VIRTIO_MMIO
+ ---help---
+ Allow virtio-mmio devices instantiation via the kernel command line
+ or module parameters. Be...
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
..._METHODS];
+
+ int listen_via_sctp;
} ServerOptions;
/* Information about the incoming connection as used by Match */
diff --git a/ssh.c b/ssh.c
index add760c..c2f663c 100644
--- a/ssh.c
+++ b/ssh.c
@@ -196,7 +196,7 @@ static void
usage(void)
{
fprintf(stderr,
-"usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
+"usage: ssh [-1246AaCfgHhKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n"
" [-D [bind_address:]port] [-E log_file] [-e escape_char]\n"
" [-F configfile] [-I pkcs11] [-i identity_fil...
2009 Aug 05
1
syntax-check changes
With this, "make syntax-check" runs a few more tests, all passing.
>From febff9d2a35c4f40abbaf8943146476bdeac671e Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Tue, 4 Aug 2009 13:49:19 +0200
Subject: [PATCH 1/8] build: remove more files added by ./autogen.sh
* po/LINGUAS: Remove file.
* po/Makefile.in.in: Likewise.
* po/Makevars: Likewise.
* po/Rules-quot: Likewi...
2006 Oct 31
1
Asterisk does not bridge zap channels on outgoing calls
...xt=int_agentie
;------------------------------
group=3
callgroup=3
pickupgroup=3,4,5,10
threewaycalling=yes
transfer=yes
;useincomingcalleridonzaptransfer=yes
callwaitingcallerid=yes
;echocancelwhenbriged=yes
immediate=no
rxgain=-2.0
txgain=2.2
callerid=Agentie 45
channel=>25
callerid=Agentie 46
channel=>26
callerid=Agentie 47
channel=>27
callerid=Agentie 48
channel=>28
callerid=Agentie 49
channel=>29
callerid=Agentie 50
channel=>30
callerid=Agentie 51
channel=>31
callerid=Agentie 52
channel=>32
callerid=Agentie 53
channel=>33
callerid=Agentie 54
channel=>...
2012 Jul 23
4
[RFC 0/2] virtio: provide a way for host to monitor critical events in the device
As it was discussed recently, there's currently no way for the guest to notify
the host about panics. Further more, there's no reasonable way to notify the
host of other critical events such as an OOM kill.
This short patch series introduces a new device named virtio-notifier which
does two simple things:
1. Provide a simple interface for the guest to notify the host of critical
2012 Jul 23
4
[RFC 0/2] virtio: provide a way for host to monitor critical events in the device
As it was discussed recently, there's currently no way for the guest to notify
the host about panics. Further more, there's no reasonable way to notify the
host of other critical events such as an OOM kill.
This short patch series introduces a new device named virtio-notifier which
does two simple things:
1. Provide a simple interface for the guest to notify the host of critical
2012 Jan 20
8
Various fixes from building libguestfs for Debian
Here are some of the patches that I have maintained in the patch queue
of my packages that I maintain within the Debian distribution
(http://packages.qa.debian.org/libg/libguestfs.html). All of them
address FTBFS (fail to build from source) errors that happened with
the particular configuration that is used for building the Debian
package.
Cheers,
-Hilko
2016 Dec 18
6
[PATCH v3 0/6] Feature: Yara file scanning
v3:
- allow to load multiple rule files
- added optional namespace parameter to yara_load
- move destructor logic in yara module
- use generic file upload logic
- use generic temporary path function
Matteo Cafasso (6):
appliance: add yara dependency
New API: yara_load
New API: yara_destroy
New API: internal_yara_scan
New API: yara_scan
yara_scan: added API tests
2012 Nov 01
41
[Request for review] [RFC] Add label support for snapshots and subvols
...++++++++++++++
btrfslabel.h | 4 +++-
cmds-balance.c | 1 +
cmds-filesystem.c | 34 +++++++++++++++++++++++++++++-----
cmds-inspect.c | 1 +
cmds-qgroup.c | 1 +
cmds-quota.c | 1 +
cmds-subvolume.c | 1 +
commands.h | 3 ---
common.c | 46 ----------------------------------------------
ioctl.h | 2 ++
utils.c | 30 ++++++++++++++++++++++++++++--
utils.h | 3 +++
15 files changed, 116 insertions(+), 62 deletions(-)
delete mode 100644 common.c
Btrfs: add label to snapshot and subvol
fs/btrf...
2016 Nov 02
8
[PATCH 0/6] Feature: Yara file scanning
Yara is a rule based scanning engine aimed to help malware analysts in finding and classifying interesting samples.
https://github.com/VirusTotal/yara
This series adds Yara support to Libguestfs allowing to upload sets of rules and scanning files against them.
Currently provided APIs:
- yara_load: loads a set of rules
- yara_destroy: free resources allocated by loaded rules
- yara_scan:
2007 Jan 23
2
Re: [nut-commits] svn commit r731
..., sizeof(pidfn), "%s/upsd.pid", altpidpath());
>
> printf("Network UPS Tools upsd %s\n", UPS_VERSION);
>
> -#ifndef HAVE_IPV6
> - while ((i = getopt(argc, argv, "+hp:r:i:fu:Vc:D")) != EOF) {
> -#else
> while ((i = getopt(argc, argv, "+h46p:r:i:fu:Vc:D")) != EOF) {
> -#endif
> switch (i) {
> case 'h':
> help(progname);
> break;
> case 'p':
> - net_port = atoi(optarg);
> - break;
> case 'i':
> -#ifndef HAVE_IPV6
> - if (!inet_aton(optarg, &...