search for: profiler

Displaying 20 results from an estimated 14733 matches for "profiler".

Did you mean: profile
2010 Apr 03
4
question difference of roaming profile between WinXP and Win7
Hello I want to add Win7 machine to my Samba PDC with WinXP clients. Google tells me I have to add a .V2 to my profiles. The samba log ask about a .v2 share. Can someone explain me the difference of the v2 extension at the profile names and the roaming profile share? Following my settings: smb.conf: [global] logon path = \\%L\nt-profile logon home = \\%L\nt-profile [nt-profile]
2006 Jan 16
4
Creating two records at once
Hi there, I have a User model and a Profile model. A user has_one profile, and a profile belongs_to a user. The profile model contains a user_id column as the foreign key. The problem comes in when I want a user to register. In the user_controller I have a method that creates the user. I also want the profile model to be filled in with the appropriate user_id foreign key (I don''t care
2020 Aug 07
4
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
...xtend current profile format in order to be able to represent a full context-sensitive profile and also encode pseudo-probe info. This is done without drastically diverging from today’s AutoFDO profile format so that existing tools and libraries can be reused with minor changes (e.g. llvm-profdata, profiler reader and writer). For a context-sensitive profile, we extend the profile format by changing the function profile header line to include calling context in addition to function name. With today’s AutoFDO, we have a single profile header for each function to represent its accumulative profile. E.g...
2003 Jan 10
5
Move existing Local Profile to Roaming
Hello: I have a Redhat 7.3 samba server acting as a PDC and running samba 2.2.3a-13. I have a few computers with extensive existing profiles and I want to know if anyone knows of a good way to get the COMPLETE profile to the roaming profile on the samba server. Every manual copy way that I have tried thus far has failed miserably. Thanks, A Cline
2005 Apr 28
3
Roaming profiles in domain level
Hi Everyone, Does anybody use roaming profiles in domain level? I'm looking for helps for setting up Samba as a NT4 domain member to support roaming profiles for sharing during domain logon of Windows clients. I ran into the problems. log files couldn't show specified messages, except for BUFFER_TOO_SMALL. If a profile share directory is mounted on a Windows NT DC or a Windows domain
2008 Apr 30
2
group profiles
Hello, according to the samba howto it should be possible to create group profiles but the documentation is very short, summarized in: "A group profile is a profile that is created first using a template (example) user. Then using the profile migration tool (see above), the profile is assigned access rights for the user group that needs to be given access to the group profile."
2010 Apr 29
2
please wait for the user profile service...
hi all got a windows 2008 server using samba as a primary domain controller. also got terminal services on the windows box for remote desktops, got some clients set up with thinstation to automatically connect to the terminal server with rdesktop. got a problem with logging on and off, its taking about 2 minutes to log in, "please wait for the user profile service", time increases if
2020 Aug 07
2
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
...xtend current profile format in order to be able to represent a full context-sensitive profile and also encode pseudo-probe info. This is done without drastically diverging from today’s AutoFDO profile format so that existing tools and libraries can be reused with minor changes (e.g. llvm-profdata, profiler reader and writer). For a context-sensitive profile, we extend the profile format by changing the function profile header line to include calling context in addition to function name. With today’s AutoFDO, we have a single profile header for each function to represent its accumulative profile. E.g...
2015 Jun 16
3
[LLVMdev] IC profiling infrastructure
Xinliang David Li <davidxl at google.com> writes: > On Mon, Jun 15, 2015 at 5:35 PM, Justin Bogner <mail at justinbogner.com> wrote: >> "Betul Buyukkurt" <betulb at codeaurora.org> writes: >>>> - We don't need to store the value profiling kind in the data at all. >>>> The frontend knows which invocations of the intrinsic are for
2016 Feb 28
5
Add support for in-process profile merging in profile-runtime
Justin, looks like there is some misunderstanding in my email. I want to clarify it here first: 1) I am not proposing changing the default profile dumping model as used today. The online merging is totally optional; 2) the on-line profile merging is not doing conversion from raw to index format. It does very simple raw-to-raw merging using existing runtime APIs. 3) the change to existing profile
2015 Jun 22
4
[LLVMdev] IC profiling infrastructure
...nce by > collecting the profile sites of all kinds regardless of the flags. > After profiling matching, simply drop selected sites according to the > flags. > > This adds complexity of the code. With value kinds encoded in profile > data, the handling is much simpler -- each value profiler only needs > to deal with its own kind. > >> >>> 2) work around profile-use/value transformation bug selectively for >>> some file without the need to change anything in instrumentation pass >> >> I'm not sure I understand what you mean here. > &g...
2002 Jun 26
4
Can't create profile directory
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: Wim Mevissen.vcf Type: text/x-vcard Size: 513 bytes Desc: not available Url : http://lists.samba.org/archive/samba/attachments/20020626/98113284/WimMevissen.vcf
2016 Feb 28
0
Add support for in-process profile merging in profile-runtime
> On Feb 28, 2016, at 12:46 AM, Xinliang David Li via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Justin, looks like there is some misunderstanding in my email. I want to clarify it here first: > > 1) I am not proposing changing the default profile dumping model as used today. The online merging is totally optional; > 2) the on-line profile merging is not doing
2007 Jul 18
2
samba roaming profile
Debian stable: Samba -3.0.24-6etch2 I set up a samba server as a pdc. smb.conf logon path = \\%L\profiles\%U logon home = \\%L\%U [profiles] comment = Network PRofiles Share path = /home/samba/profiles #read only = No #store dos attributes = Yes #create mask = 0600 #directory mask = 0700 #browseable = no #guest ok = no #printable = no writable = yes I created the folders /home/samba
2005 Nov 21
3
roaming profiles, not roaming
using samba v3 windows xp sp2 clients. i have profiles working to some extent, that is when i create a new user on the server, when that user logs in, the profile gets downloaded from the server from the /etc/netlogon/default user directory. any customizations that the user makes work just fine and get saved to the profiles share under profiles/username when the user tries to go to a different
2013 Sep 06
3
[LLVMdev] RFC - Extending ProfileInfo to support external profiles
...to the first instruction of the block. Things like that. The problem here is that different profiling mechanisms will have different kinds of data. We will need ways of translating those into metadata that is then served from the analysis API. For example, how do we deal with value profilers? For now, I'm focusing on the most common types of profilers. These tend to use block/edge frequencies, which are more straightforward to convert. 2- Passes should not need to be aware that profile information exists. They would make the usual calls to the analysis API, which...
2005 Feb 21
1
leaving Profiles on PDC
hi I'm trying to configure my samba server and its clients to leave the user profiles on the server if a user logs on/off. Windows (2000) seems to synchronize the local profile every time a user logs on/off, which can't be disabled. so, i thought, why not use this synchronize "feature" to synchronize the _same_ files ( - or then - don't touch anything ? ) I searched the
2020 Aug 08
5
[RFC] Context-sensitive Sample PGO with Pseudo-Instrumentation
...xtend current profile format in order to be able to represent a full context-sensitive profile and also encode pseudo-probe info. This is done without drastically diverging from today’s AutoFDO profile format so that existing tools and libraries can be reused with minor changes (e.g. llvm-profdata, profiler reader and writer). For a context-sensitive profile, we extend the profile format by changing the function profile header line to include calling context in addition to function name. With today’s AutoFDO, we have a single profile header for each function to represent its accumulative profile. E.g...
2006 Nov 03
4
Roaming Profile gets deleted
Hi there, I try to move our W2K Domain to samba. I managed to dump a list of the old users with its SID's and created them on the samba domain which has the same sid like the old W2k domain. Then the users should be able to use their old roaming profile without changing the profiles sid. This works if the computer which acesses the domain has already the profile on its disk. If the
2003 Nov 17
2
UNIX paths vs UNC names in [profile]
Alright, I can be a bit thick sometimes, but by RTFM or other documentation I've solved a problem. ISSUE I had been having problems with profiles, I use using the following profile: <edited> [global] preferred master = yes domain master = yes local master = yes security = user domain logons = yes logon path = \\%N\%u\profiles logon drive = H: logon home = \\%L\%U logon script =