similar to: create a new data frame after comparing two columns of the previous data frame

Displaying 6 results from an estimated 6 matches similar to: "create a new data frame after comparing two columns of the previous data frame"

2016 Jun 01
0
GV98 adapter, experience with nouveau
On 01.06.2016 20:20, Yury Tarasievich wrote: > Thank you! > > Now, I'd appreciate some hints on how to make > console work, at least. > How are the video modes controlled, e.g., can I > have some analogue of /etc/fb.modes for nouveau? > > -Yury > After hand-over: "fb: switching to nouveaufb from VESA VGA" video device "automatically"
2017 Apr 13
0
[PATCH 3/4] nouveau_hwmon: migrate to hwmon_device_register_with_info
This patch creates special group attributes for special attrs like "*auto_point*". We check if we need them, and if we do, we set them up in special_groups structure, that then we pass to hwmon_device_register_with_info. --- linux/drivers/gpu/drm/nouveau/nouveau_hwmon.c.orig 2017-04-13 10:13:26.331391326 +0200 +++ linux/drivers/gpu/drm/nouveau/nouveau_hwmon.c 2017-04-13
2018 Apr 30
0
[Bug 106305] Can't change screen brightness on MSI GT73VR with nouveau driver
https://bugs.freedesktop.org/show_bug.cgi?id=106305 --- Comment #6 from Geroge T <reportbug at mailna.biz> --- On KDE Plasma, at least I can use the operating system as normal, but with gnome 3 it's a nightmare, the mouse and user interface is so sluggish that it's impractical to use. -- You are receiving this mail because: You are the QA Contact for the bug. You are the assignee
2018 Jun 03
1
[Bug 106794] New: Driver crash while browsing with chrome
https://bugs.freedesktop.org/show_bug.cgi?id=106794 Bug ID: 106794 Summary: Driver crash while browsing with chrome Product: xorg Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau Assignee:
2017 Mar 08
1
[PATCH 14/24] drm/nouveau: Merge pre/postclose hooks
Again no apparent explanation for the split except hysterical raisins. Merging them also makes it a bit more obviuos what's going on wrt the runtime pm refdancing. Cc: Ben Skeggs <bskeggs at redhat.com> Cc: nouveau at lists.freedesktop.org Signed-off-by: Daniel Vetter <daniel.vetter at intel.com> --- drivers/gpu/drm/nouveau/nouveau_drm.c | 9 +-------- 1 file changed, 1
2016 Jun 30
6
[PATCH 0/6] lib: string: add function strtolower()
This series introduces a new generic function strtolower(), which converts strings to lowercase in-place, overwriting the original string. This kind of functionality is needed in several places in the kernel. Right now, everybody seems to be implementing their own copy of this function. So, we replace several custom "strtolower" implementations with this new library function. Another