search for: pt

Displaying 20 results from an estimated 3958 matches for "pt".

Did you mean: ptr
2023 May 11
2
Different spns for primary and secondary DCs
Hi, I have 2 domain controllers with samba4, and i realized i have some missing spns for the second domain controller: > samba-tool spn list dc1$ dc1$ User CN=dc1,OU=Domain Controllers,DC=test,DC=pt has the following servicePrincipalName: ?? ? HOST/dc1.test.pt ?? ? HOST/dc1.test.pt/test[1] ?? ? ldap/dc1.test.pt/test[1] ?? ? GC/dc1.test.pt/test.pt[2] ?? ? ldap/dc1.test.pt ?? ? HOST/dc1.test.pt/test.pt[2] ?? ? ldap/dc1.test.pt/test.pt[2] ?? ? HOST/dc1 ?? ? E3514235...
2007 Mar 01
1
LDAP error
Hi, When i try to inser this on LDAP database, i get this error: "ldapadd: invalid format (line 14) entry: "uid=spessoa,ou=users,ou=accounts,dc=telbit,dc=pt"" I can't see nothing wrong. The .ldif file follows my signature. Any help would be appreciated. Warm Regards, M?rio Gamito -- dn: dc=telbit,dc=pt objectClass: top objectClass: dcObject objectClass: organization o: telbit.pt dc: telbit dn: cn=admin,dc=telbit,dc=pt objectClass: si...
2009 Jun 16
4
confusion on levels() function, and how to assign a wanted order to factor levels, intentionally?
...106 61 95 1.559322 60 55 Pd CYPd03 6.20 121 64 100 1.707692 65 56 Pd CYPd03 5.10 99 38 28 1.430000 20 57 Pd CYPd03 5.10 132 45 47 1.791667 24 58 Pd YLPd01 6.15 120 43 46 1.446000 21 59 Pt BXPd01 4.60 64 18 23 2.166667 18 60 Pt BXPd01 5.10 87 26 38 2.250000 32 61 Pt BXPd01 4.80 89 27 50 2.130435 46 62 Pt BXPd01 6.00 97 29 31 2.684211 19 63 Pt BXPd01 5.20 98 32 54 2.292...
2009 Feb 13
3
Strange performance loss
I''m moving some data off an old machine to something reasonably new. Normally, the new machine performs better, but I have one case just now where the new system is terribly slow. Old machine - V880 (Solaris 8) with SVM raid-5: # ptime du -kds foo 15043722 foo real 6.955 user 0.964 sys 5.492 And now the new machine - T5140 (latest Solaris 10) with ZFS striped atop a bunch of 2530 arrays: # ptime du -kds foo 15343120 foo real 2:55.210 user 2.559 sys 2:05.788 It''s...
2016 Dec 14
2
no rtp after dns query
hi, i have strange problem with no rtp packets from asterisk after dns query. see pcap below centos6/asterisk 13.9 + chan_sip 172.23.0.3 - asterisk 172.23.5.1/2 - voip phones any ideas/hints? 1170 25.028206000 172.23.0.3 -> 172.23.5.1 RTP 214 PT=ITU-T G.711 PCMA, SSRC=0x334508F6, Seq=49318, Time=1442112256 1171 25.045556000 172.23.5.1 -> 172.23.0.3 RTP 214 PT=ITU-T G.711 PCMA, SSRC=0x643C9869, Seq=4468, Time=716240 1172 25.045629000 172.23.0.3 -> 172.23.5.2 RTP 214 PT=ITU-T G.711 PCMA, SSRC=0x3566361, Seq=60990, Time=71624...
2017 Aug 04
5
Change OS from CentOS 6 to 7
Audio packets are running... 961 16.150421076 192.168.5.150 -> 192.168.5.25 RTP 214 PT=ITU-T G.711 PCMU, SSRC=0x6A3E0AF1, Seq=28402, Time=73280 962 16.170411284 192.168.5.150 -> 192.168.5.25 RTP 214 PT=ITU-T G.711 PCMU, SSRC=0x6A3E0AF1, Seq=28403, Time=73440 963 16.190381989 192.168.5.150 -> 192.168.5.25 RTP 214 PT=ITU-T G.711 PCMU, SSRC=0x6A3E0AF1, Seq=28404, Time=73600 964 16...
2007 Mar 26
2
Problems with LDAP
Hi, I'm making a schema for my company's co-workers, but i'm obviosuly doing something wrong, because i get: ldapadd -x -D "cn=admin,dc=telbit,dc=pt" -w secret -f people.ldif adding new entry "dc=telbit,dc=pt" ldapadd: no attributes to change or add (entry="cn=admin,dc=telbit,dc=pt") My schema file (experimantel) is: ## objectclass definition for 'plainjoePerson' depends on core.schema. objectclass ( 1.3.6.1....
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code
This patch rewrites all the miptree layout and transfer code in the pre-NV50 Gallium drivers. The code is also unified among them and put in the nv04 directory. The current code is broken in several ways: 1. 3D textures are laid out first by face, then by level, which is incorrect 2. Cube maps should have 128-byte aligned faces 3...
2010 Jan 18
0
[PATCH] nv04-nv40: Rewrite and unify miptree and transfer code (v2)
Changes: - Fixed some nv##_miptree that were not converted to nv04_miptree. - Disable swizzling on non-RGBA 2D textures, since the current 2D code is mostly broken in those cases. A later patch will fix this. Thanks to Andrew Randrianasulu who reported this. This patch rewrites all the miptree layout and transfer code in the...
2020 Jun 19
0
[PATCH 10/16] nouveau/hmm: support mapping large sysmem pages
...on. */ if (!(range->hmm_pfns[0] & HMM_PFN_VALID)) { - ioctl_addr[0] = 0; + args->p.phys[0] = 0; return; } page = hmm_pfn_to_page(range->hmm_pfns[0]); + /* + * Only map compound pages to the GPU if the CPU is also mapping the + * page as a compound page. Otherwise, the PTE protections might not be + * consistent (e.g., CPU only maps part of a compound page). + */ + if (range->hmm_pfns[0] & HMM_PFN_COMPOUND) { + page = compound_head(page); + args->p.page = page_shift(page); + args->p.size = 1UL << args->p.page; + args->p.addr &= ~(a...
2013 Jan 03
2
simulation
...(the v_t random walk) V_init_cond<-0 Et<-ts(rnorm(n+100,mean=0,sd=1)) Vt<-Et*0 Vt[1]<-V_init_cond+Et[1] for(i in 2:(n+100)) { Vt[i]<-Vt[i-1]+Et[i] } Vt<-ts(Vt[(length(Vt)-n+1):length(Vt)]) plot(Vt) ## Eq.13 (the strategy) Xt_init_cond<-0 Xt<-Xt_init_cond*0 Xt[2]<-c(Vt[1]-Pt[1]) for(i in 2:(n)){ Xt[i]<-c(Vt[i-1]-Pt[i-1]) } Xt<-ts(Xt[(length(Xt)-n+1):length(Xt)]) plot(Xt) ## Eq. 14 (pice dynamics) P_init_cond<-0 Pt<-Rt*0 Pt[1]<-P_init_cond+Rt[1] for(i in 2:(n+100)) { Pt[i]<-Pt[i-1]+Rt[i] } Pt<-ts(Pt[(length(Pt)-n+1):length(Pt)]) plot(Pt) Rt_init_co...
2014 Sep 26
0
[RFC PATCH 1/7] android: Support creating sync fence from drm fences
Modify sync_fence_create to accept an array of 'struct fence' objects. This will allow drm drivers to create sync_fence objects and pass sync fd's between user space with minimal modifications, without ever creating sync_timeline or sync_pt objects, and without implementing the sync_timeline_ops interface. Modify the sy...
2009 Dec 31
1
[PATCH] Print NOUVEAU_NO_SWIZZLE and NOUVEAU_NO_TRANSFER messages only once
Currently we are continuously spewing messages messages about these variables since we call debug_get_bool_option everytime we want to check their value This is annoying, slows things down due to terminal rerendering and obscures useful messages. This patch only calls debug_get_bool_option once and caches the result in a static variable. --- src/gallium/drivers/nv04/nv04_transfer.c | 6 ++++-- src/galli...
2006 Aug 04
8
Demo in rails2.pdf of add_price migration, PostgreSQL 8.1.4
...ited it: class AddPrice < ActiveRecord::Migration def self.up add_column :products, :price, :decimal, :precision => 8, :scale => 2, :default => 0 end def self.down remove_column :products, :price end end I see this error when I walk through the demo: bash mac maco /pt/books/rails2_my_depot/depot 9 $ bash mac maco /pt/books/rails2_my_depot/depot 9 $ rake db:migrate --trace (in /pt/books/rails2_my_depot/depot) ** Invoke db:migrate (first_time) ** Invoke environment (first_time) ** Execute environment ** Execute db:migrate == AddPrice: migrating ===================...
2020 Sep 14
0
DNS problems when adding samba DC to win2008R2
On 14/09/2020 21:11, Carlos Jesus wrote: > Hi rowland thanks for the tip. > Even though I'm trying to add a DC not a domain member, your > instructions are easily adapted. oops, sorry I sent you the wrong one :-[ > I followed your procedure using Louis' repo up to the point of joining > the domain. > Then I issued samba-tool domain join samdom.example.com > <http://samdom.example.com> DC -U"SAMDOM\administrator" > I got basical...
2020 Sep 14
3
DNS problems when adding samba DC to win2008R2
Hai, See below. > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Carlos Jesus via samba > Verzonden: maandag 14 september 2020 11:40 > Aan: Rowland penny > CC: sambalist > Onderwerp: Re: [Samba] DNS problems when adding samba DC to win2008R2 > .... > > > > > grep: /etc/samba/smb.conf: No such file or directory > ./samba.sh: line 328: [: : integer expression expected Hmm, it does no...
2009 May 20
4
Double packages
...ges with x64_86 architecture and got same packages doubling (32 and 64 bits). How can i force yum just install packages x64_86 based? [root at www pfqueue-0.5.6]# yum install ncurses-devel Loading "fastestmirror" plugin Loading mirror speeds from cached hostfile * base: mirrors.nfsi.pt * updates: mirrors.nfsi.pt * addons: mirrors.nfsi.pt * extras: mirrors.nfsi.pt Setting up Install Process Parsing package install arguments Resolving Dependencies --> Running transaction check ---> Package ncurses-devel.x86_64 0:5.5-24.20060715 set to be updated ---> Package ncurs...
2009 Jun 15
1
How to do automatical-plotting
...ely tedious work. I followed the tutorials in the ggplot2 website. But, I have not found any way to ease this work. I am really thirsting for an automatic approach to plot the numeric variables one by one in a PDF file, assigning the variable name as the y label. Can anyone share any brilliant scripts with me. I think it must be helpful to others who have little programming experience like me. the code I used to make boxplot on (dataframe: All, group variable: species and popluation, and numeric variable: conlen) is as followed: pcon<-ggplot(All, aes(population,conlen)) pcon+geom_boxplot(a...
2008 Jul 02
4
Please pull ia64 trees
Hi Keir, Please pull the ia64 trees: http://xenbits.xensource.com/ext/ia64/xen-unstable.hg http://xenbits.xensource.com/ext/ia64/linux-2.6.18-xen.hg This includes updates of acpi related files, save/restore update for pv_ops and bug fixes from Akio, and mini-os update from Samuel Thibault. Thanks, -- yamahata _______________________________________________ Xen-devel mailing list
2010 Sep 21
1
reshape is re-ordering my variables
...ame': 23 obs. of 21 variables: $ ICU : int 1 18 17 9 22 19 6 16 25 26 ... $ Q6.RC.1 : chr "SM" "JF" "IW" "MS" ... $ Q6.FT.RC.1.years : int 0 8 12 3 9 1 5 16 5 5 ... $ Q6.FT.RC.1.months: int 0 0 0 0 0 0 0 6 0 0 ... $ Q6.PT.RC.1.years : int 2 0 0 1 2 0 0 0 0 0 ... $ Q6.PT.RC.1.months: int 0 0 0 0 0 0 0 0 0 0 ... $ Q6.RC.2 : chr "BA" "ML" "TM" "YL" ... $ Q6.FT.RC.2.years : int 0 0 7 3 0 99999 0 0 0 0 ... $ Q6.FT.RC.2.months: int 0 0 0 0 0 99999 0 0 0 0 ......