search for: toplevel

Displaying 20 results from an estimated 481 matches for "toplevel".

2006 May 22
1
rerender tcltk toplevel
Hi everybody, I am trying to write a simple progress display based on a tcltk toplevel. My first approach was to use the progressBar widget from the BWidget library but since this is not available on every system (missing on at least almost all windows systems, I guess...) I wanted to have a backup there. So my second strategy was to use a simple toplevel with a label and update the...
2005 May 13
0
weird characters in files created by gnome login on samba share
..../.gconf/apps/panel/objects/menu_bar_screen0 ./.gconf/apps/panel/objects/menu_bar_screen0/%gconf.xml畲 ./.gconf/apps/panel/objects/yelp_launcher_screen0 ./.gconf/apps/panel/objects/yelp_launcher_screen0/%gconf.xml㹹 ./.gconf/apps/panel/objects/yelp_launcher_screen0/%gconf.xml.new ./.gconf/apps/panel/toplevels ./.gconf/apps/panel/toplevels/bottom_panel_screen0 ./.gconf/apps/panel/toplevels/bottom_panel_screen0/background ./.gconf/apps/panel/toplevels/bottom_panel_screen0/background/%gconf.xml⽳ ./.gconf/apps/panel/toplevels/bottom_panel_screen0/%gconf.xml瑭 ./.gconf/apps/panel/toplevels/%gconf.xml ./.gcon...
2017 Oct 03
0
samba performance & ACL behavior
All, I am building a glusterfs environment for file storage and need to use ACL's. The CentOS system is joined to AD. We have ingested data into the Gluster environment at /toplevel. OS: CentOS 7.3 Glusterfs: 3.10.5 Samba: 4.4.4 smb.conf: [global] workgroup = GROUP security = ADS realm = GROUP.DOMAIN.COM template homedir = /home/%U template shell = /bin/bash winbind use default domain = yes winbind enum users = yes...
2020 Jun 16
0
Fix build error with GCC 10 due to multiple definition of `toplevel'
...corresponding patch for git am. Regards, Salvatore >From 9e7641bf58df9dda3bc51f381f371fa7cbce47af Mon Sep 17 00:00:00 2001 From: Salvatore Bonaccorso <carnil at debian.org> Date: Tue, 16 Jun 2020 14:06:14 +0200 Subject: [PATCH] Fix build error with GCC 10 due to multiple definition of `toplevel' GCC is stricter in handling of symbol clashes and throws: gcc-10 tftp.o main.o ../common/libcommon.a /build/tftp-hpa/lib/libxtra.a -o tftp /usr/bin/ld: main.o:/build/tftp-hpa/tftp/main.c:98: multiple definition of `toplevel'; tftp.o:/build/tftp-hpa/tftp/tftp.c:51: first defined here...
2020 Sep 29
0
[PATCH RESEND] tftp-hpa: Fix build error with GCC 10 due to multiple definition of `toplevel'
...ted to be changed to be applied? Regards, Salvatore >From 9e7641bf58df9dda3bc51f381f371fa7cbce47af Mon Sep 17 00:00:00 2001 From: Salvatore Bonaccorso <carnil at debian.org> Date: Tue, 16 Jun 2020 14:06:14 +0200 Subject: [PATCH] Fix build error with GCC 10 due to multiple definition of `toplevel' GCC is stricter in handling of symbol clashes and throws: gcc-10 tftp.o main.o ../common/libcommon.a /build/tftp-hpa/lib/libxtra.a -o tftp /usr/bin/ld: main.o:/build/tftp-hpa/tftp/main.c:98: multiple definition of `toplevel'; tftp.o:/build/tftp-hpa/tftp/tftp.c:51: first defined here...
2016 Jan 25
1
[PATCH] btrfs_subvolume_show: fix root/toplevel check w/ btrfs-progs >= 4.4
...btrfs.c +++ b/daemon/btrfs.c @@ -1029,9 +1029,12 @@ do_btrfs_subvolume_show (const char *subvolume) } /* If the path is the btrfs root, `btrfs subvolume show' reports: - * <path> is btrfs root + * <path> is btrfs root [in btrfs-progs < 4.4] + * <path> is toplevel subvolume */ - if (out && strstr (out, "is btrfs root") != NULL) { + if (out && + (strstr (out, "is btrfs root") != NULL || + strstr (out, "is toplevel subvolume") != NULL)) { reply_with_error ("%s is btrfs root", subvolu...
2007 Nov 25
2
[LLVMdev] OCaml
...;> What work has already been done on this and similar ideas? What is >> the >> easiest >> way to interface a front-end written in OCaml with an LLVM backend? I've written a compiler front end for a custom language in OCaml which features compilation and an interactive toplevel. Until now I am interfacing LLVM by emitting .ll files which contain a textual representation of the LLVM IR language and using some primitive custom bindings to interface the ExecutionEngine which drives the toplevel. When a function is evaluated it is compiled and converted into text fo...
2011 Apr 15
7
warning: toplevel constant XYZ referenced Admin:XYZ
...ave an odd problem. I got controllers in a namespace and controllers outside of the namespace. For example, I have a PagesController and a Admin::PagesController. When I run rspec from the top, tests pass and I get the following warning: spec/controllers/admin/pages_controller_spec.rb:4: warning: toplevel constant PagesController referenced by Admin::PagesController This makes no sense. I do have a PagesController and an Admin::PagesController and specs for both that are declared properly. I get this for 3 out of about 20 controllers. Any ideas?
2010 Aug 28
0
Rails 3 warning
../home/bruparel/.rvm/gems/ruby-1.9.2-head/gems/right_aws-2.0.0/lib/awsbase/support.rb:47: warning: toplevel constant ClientStatus referenced by Client::ClientStatus /home/bruparel/.rvm/gems/ruby-1.9.2-head/gems/right_aws-2.0.0/lib/awsbase/support.rb:47: warning: toplevel constant Client referenced by ClientComment::Client /home/bruparel/.rvm/gems/ruby-1.9.2-head/gems/right_aws-2.0.0/lib/awsbase/support.r...
2010 Feb 23
0
[LLVMdev] how to build eglibc using llvm-gcc without unsupported -fno-toplevel-reorder
...9;s implementation. They need to keep the order of every definition they see. It also has other issues: 1654 /* Output all functions, variables, and asm statements in the order 1655 according to their order fields, which is the order in which they 1656 appeared in the file. This implements -fno-toplevel-reorder. In 1657 this mode we may output functions and variables which don't really 1658 need to be output. */ > Regards, > Sergey Y. > Cheers, -- Rafael Ávila de Espíndola
2011 May 25
1
warning: toplevel constant SomeController referenced by Admin::SomeController
...spending a while debugging through this, I still don''t have a solution. Lets try again? I have two controllers, SomeController and Admin::SomeController. When SomeController is loaded first (which happens under spork, found out by editing ActiveSupport::AbstractController) I get warning: toplevel constant SomeController referenced by Admin::SomeController and the second controller is not loaded. The first controller is polluting something for the namespaced controller. I have a rather large project where this happens, so I can''t post it. But I have a 100% repro, so I''d be...
2010 Feb 21
0
[LLVMdev] how to build eglibc using llvm-gcc without unsupported -fno-toplevel-reorder
On 2010-02-21 23:36, Sergey Yakoushkin wrote: > Hi, Rafael > > Inlined asm markup inside functions and on the top level is used to > split asm prologue/epilogue parts in very fine-grained manner. > So, splitting source c won't give the same result. You could have 2 files: - 1 which contains the function, and a marker where prolog ends (beginning of file is implicit marker of
2010 Feb 22
2
[LLVMdev] how to build eglibc using llvm-gcc without unsupported -fno-toplevel-reorder
Hi, >> Are there any reasons why option can't be supported by llvm? > It is hard and has very few users. For this to work you would have to > add ordering information to the LLVM IL. It looks easier to patch > eglibc. I agree, impact of issue is limited. But it prevents out of the box compilation of libraries for some targets. Also, looks like glibc and eglibc maintainers do
2010 Feb 22
2
[LLVMdev] how to build eglibc using llvm-gcc without unsupported -fno-toplevel-reorder
Hi, llvm doesn't support -fno-toplevel-reorder option which affects glibc/eglibc for some targets. http://www.llvm.org/bugs/show_bug.cgi?id=6364 >From conversations with gcc and eglibc maintainers, seems option is highly expected and is not going to deprecate. >> 2010/2/23 Ian Lance Taylor <iant at google.com>: >>...
2011 Oct 13
1
puppet apache module
I''m getting this and it isn''t applying my apache module. Is it because of these warnings? notice: Starting Puppet client version 2.7.5 /usr/local/rvm/gems/ruby-1.9.2-p290/gems/puppet-2.7.5/lib/puppet/ provider/service/freebsd.rb:8: warning: class variable access from toplevel /usr/local/rvm/gems/ruby-1.9.2-p290/gems/puppet-2.7.5/lib/puppet/ provider/service/freebsd.rb:9: warning: class variable access from toplevel /usr/local/rvm/gems/ruby-1.9.2-p290/gems/puppet-2.7.5/lib/puppet/ provider/service/freebsd.rb:10: warning: class variable access from toplevel /usr/local/rvm...
2010 Feb 21
1
[LLVMdev] how to build eglibc using llvm-gcc without unsupported -fno-toplevel-reorder
Hi, Rafael Inlined asm markup inside functions and on the top level is used to split asm prologue/epilogue parts in very fine-grained manner. So, splitting source c won't give the same result. Regards, Sergey Y. 2010/2/22 Rafael Espindola <espindola at google.com> I haven't looked at the code, but why can't you split the .c files > into multiple files instead of splitting
2006 Mar 28
1
toplevel constant Type referenced by Item::Type
I just upgraded to Rails 1.1 and have now gotten a few of these to stdout: /usr/lib/ruby/gems/1.8/gems/actionpack-1.12.0/lib/action_controller/routing.rb:249: warning: toplevel constant Type referenced by Item::Type What do they mean? Joe -- Posted via http://www.ruby-forum.com/.
2009 Nov 28
1
how to put ggobi display into a GUI window setup by gWidgets
Hi, I want to put a ggobi display into a GUI window setup by gWidgets, but error occur said it is not a S4 object. Does anyone have any idea about how to put it in or maybe it can not be put into a widget at all? Thanks A LOT! -- View this message in context: http://n4.nabble.com/how-to-put-ggobi-display-into-a-GUI-window-setup-by-gWidgets-tp930529p930529.html Sent from the R help mailing list
2006 Jul 16
1
[patch] klibc add toplevel .gitignore
start by ignoring make generated objects. subdirectories need specific rules later. makes git status more meaningfull. Signed-off-by: maximilian attems <maks at sternwelten.at> --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) --- /dev/null 2006-07-14 10:57:32.128246500 +0200 +++ klibc.git/.gitignore 2006-07-16 20:29:39.000000000 +0200 @@ -0,0 +1,11 @@ +# NOTE!
2016 Mar 07
2
llvm-cov accepting many binary files for aggregated coverage reports
...g html reports, is there a way to index all of the individual source files into one summary report, where there are many binary files to consider? *> I don't see why a wrapper script (that passes object file to llvm-cov one by one) won't work well* If the functionality to generate the toplevel html index page for one binary is embedded in llvm-cov, how will a wrapper script generate the toplevel html index page for a code-repository that is tested across multiple binaries. *> If *many binaries share some library code, it can be confusing to show the aggregated coverage data of the l...