search for: lb2

Displaying 13 results from an estimated 13 matches for "lb2".

Did you mean: l2
2014 Jan 13
1
Fwd: HA cluster - strange communication between nodes
...atus Cluster name: LB.STK Last updated: Mon Jan 13 15:34:21 2014 Last change: Mon Jan 13 15:24:47 2014 via cibadmin on lb1.asol.local Stack: cman Current DC: lb1.asol.local - partition with quorum Version: 1.1.10-14.el6_5.1-368c726 2 Nodes configured 2 Resources configured Online: [ lb1.asol.local lb2.asol.local ] Full list of resources: Resource Group: LB LAN.VIP (ocf::heartbeat:IPaddr2): Started lb2.asol.local WAN.VIP (ocf::heartbeat:IPaddr2): Started lb2.asol.local ---------------------------------------- After manual shutdown of one node 2 (pcs cluster stop), the node 1 doesn...
2006 Nov 23
0
[754] trunk/wxruby2/samples/bigdemo: Rubified samples and added in missing client data sample code
...(2, "This one has data") </ins><span class="cx"> </span><span class="cx"> Wx::StaticText.new(self, -1, "Select many:", Wx::Point.new(200,50), Wx::Size.new(65,18)) </span><span class="cx"> @lb2 = Wx::ListBox.new(self, 70, Wx::Point.new(280,50), Wx::Size.new(80,120), sampleList, Wx::LB_EXTENDED) </span><del>- evt_listbox(@lb2.get_id()) {|event| on_evt_multi_listbox(event)} </del><ins>+ evt_listbox(@lb2.get_id) {|event| on_evt_multi_listbox(event)} <...
2006 Nov 23
0
[752] trunk/wxruby2: Fix for Bug #6810: ListBox#get_selections should return an array of selections
...05:58:43 UTC (rev 752) </span><span class="lines">@@ -88,7 +88,7 @@ </span><span class="cx"> Wx::StaticText.new(self, -1, "Select many:", Wx::Point.new(200,50), Wx::Size.new(65,18)) </span><span class="cx"> @lb2 = Wx::ListBox.new(self, 70, Wx::Point.new(280,50), Wx::Size.new(80,120), sampleList, Wx::LB_EXTENDED) </span><span class="cx"> evt_listbox(@lb2.get_id()) {|event| on_evt_multi_listbox(event)} </span><del>- # evt_right_up(@lb2.get_id()) {|event| on_ev...
2012 May 31
2
Loop question
...llo, I have a dataframe (Lx) with 5 Lb, and 5 Lw variables. I want to create several variables according to the loop presented below (data attached). Lx <- read.csv("Lx.csv", header=T, sep=",") for (i in 1:20) { Lx$sb1[i] <- Lx$Lb1[i+1]/Lx$Lb1[i] Lx$sb2[i] <- Lx$Lb2[i+1]/Lx$Lb2[i] Lx$sb3[i] <- Lx$Lb3[i+1]/Lx$Lb3[i] Lx$sb4[i] <- Lx$Lb4[i+1]/Lx$Lb4[i] Lx$sb5[i] <- Lx$Lb5[i+1]/Lx$Lb5[i] Lx$sw1[i] <- Lx$Lw1[i+1]/Lx$Lw1[i] Lx$sw2[i] <- Lx$Lw2[i+1]/Lx$Lw2[i] Lx$sw3[i] <- Lx$Lw3[i+1]/Lx$Lw3[i] Lx$sw4[i] <- Lx$Lw4[i+1]/Lx$Lw4[...
2006 Nov 24
0
[757] trunk/wxruby2/samples/bigdemo/wxListBox.rbw: Made presentation of results of ListBox.get_selections clearer
...;>@@ -107,7 +107,8 @@ </span><span class="cx"> end </span><span class="cx"> </span><span class="cx"> def on_evt_multi_listbox(event) </span><del>- @log.write_text("evt_multi_listbox: (" + @lb2.get_selections.to_s + ")") </del><ins>+ @log.write_text("evt_multi_listbox: (" + + @lb2.get_selections.join('','') + ")") </ins><span class="cx"> end </span><span class=&quot...
2007 Jun 11
24
multiple routing tables for internal router programs
Maybe a strange request, I''ll try to explain this as clearer as I can (forgive my bad english, please :-) ). I''m setting a linux box as a router. My router uses multiple routing tables, so I can address the traffic from specific ip addresses of my lan to distinct ISPs providers (specifying a different default gateway fo r each table), marking packets with iptables
2010 Dec 12
1
heartbeat configuration for lb
...0 # What interfaces to heartbeat over? udp eth0 # # Facility to use for syslog()/logger (alternative to log/debugfile) # logfacility local0 # # Tell what machines are in the cluster # node nodename ... -- must match uname -n node lb1.summitnjhome.com node lb2.summitnjhome.com The service seems to start ok: [root at VIRTCENT01:~]#service heartbeat restart Stopping High-Availability services: [ OK ] Waiting to allow resource takeover to complete:...
2007 Jan 17
11
scope issue after upgrade
I just upgraded to 0.22.0 from 0.18.4 and I''m running into what I think are problems due to changes in scope rules. In my site.pp manifest, I have the following: import "classes/*" node nfsserver { include nfsserver } node webserver { include webserver } class cluster1_sites { website { "example.com": ...; "example2.com": ...; } } node
2020 Feb 15
5
[flang-dev] About OpenMP dialect in MLIR
...ts custom memory layouts. What custom layouts are supported? How would different non-scalar types in standard dialect be lowered to LLVM IR and passed to OpenMP runtime calls? Can you please elaborate on this? The example provided in slide 20 of the fosdem presentation contains “loop.for %j = %lb2 to %ub2 : !integer {“ But loop.for accepts “index” type. Not sure what type “!integer” represents here. 1. What are the different memory access operations which are supported inside the OpenMP region and lowered to proper OpenMP runtime calls in LLVM IR? The possibilities are:...
2020 Feb 17
3
[flang-dev] About OpenMP dialect in MLIR
...; >> How would different non-scalar types in standard dialect be lowered to >> LLVM IR and passed to OpenMP runtime calls? Can you please elaborate on >> this? >> >> The example provided in slide 20 of the fosdem presentation contains >> >> “loop.for %j = %lb2 to %ub2 : !integer {“ >> >> But loop.for accepts “index” type. Not sure what type “!integer” >> represents here. >> >> >> 1. >> >> What are the different memory access operations which are supported >> inside the OpenMP region and lower...
2020 Feb 18
2
[flang-dev] About OpenMP dialect in MLIR
...in standard dialect be lowered to >>>> LLVM IR and passed to OpenMP runtime calls? Can you please elaborate on >>>> this? >>>> >>>> The example provided in slide 20 of the fosdem presentation contains >>>> >>>> “loop.for %j = %lb2 to %ub2 : !integer {“ >>>> >>>> But loop.for accepts “index” type. Not sure what type “!integer” >>>> represents here. >>>> >>>> >>>> 1. >>>> >>>> What are the different memory access operations wh...
2020 Feb 13
6
About OpenMP dialect in MLIR
Hi, I have few questions / concerns regarding the design of OpenMP dialect in MLIR that is currently being implemented, mainly for the f18 compiler. Below, I summarize the current state of various efforts in clang / f18 / MLIR / LLVM regarding this. Feel free to add to the list in case I have missed something. 1. [May 2019] An OpenMPIRBuilder in LLVM was proposed for flang and clang frontends.
2020 Feb 27
2
[PATCH] Update the 5 year logo to 10 year logo
...kWWT3hUFwhhb9JHmfXRYWs_ zRq@3%7P*n{6}}(Q3NeaRFR5xBLlt%hE)5{7>Yo!k_q{BRybc_Hf=z9Z*zbz*scK3F zGA=Jr>f>Z%1EV=g=>+HV<ybk@2stQtIF9e?_@vFAdsG&vFlS|6FU7w<MZ|h=K!Ez> zTCsdHj#aqrF=4(>d?e8GS+=IQ2$56~8R9>SGfd+&p)OOc5l6am`9=<l#C2Iaa-x5w zV`&!4fkD8q1X#BBCx)cYx-R3;If}TWV_lB214~(L%W#KWhu0DOz?WFOq5mHm!JFLg z!)cw~(6OLzWu89i=tItIv}nWA#$TB86zbV#WR4f%4<6=X{7o53N#!;UQ0y_#VR?Tt zv$7ELvRThdzhIyM7I<S+*qoi#k{|z+WL|G&EaaH&`jZTxUOjAIHLh(BEEDnbS?uXs zk);!YcQ%IqaU>SH3?1HbE}BH7ba#*ofLlY@;@;-5>2r&%dhgOJf__tPmH%ag8Vg_X z7k#KvYk(Za(W)_GLx^{BYOHi>epy&5!TA;F_...