search for: splitter

Displaying 20 results from an estimated 193 matches for "splitter".

Did you mean: splitted
2005 Dec 27
2
Drag and drop problem if Droppable zones overlap
Hello, The question is related to Droppables and Draggable. I''m creating a splitter component with a DIV that acts as the splitter and 2 DIV zones that are the splitted zone. To do so I use the Droppables and Draggable in conjunction. The splitter DIV is a Draggable component and I define 2 Droppable zones for the splitter DIV (Zone A and B on each side of the splitter) It wor...
2010 Apr 14
1
Cannot connect matroska splitter to theora encoder
...to encode a mkv file into theora using directshow filters I have a mkv file containing only video encoded in YUY2. I use the DirectShowNet Lib V2.1 ( <http://sourceforge.net/projects/directshownet/files/> http://sourceforge.net/projects/directshownet/files/) I use the matroska splitter directshow filter v1.0.2.9 ( <http://www.matroska.org/downloads/windows.html> http://www.matroska.org/downloads/windows.html) And I use the xiph theroa encoder directshow filter version 0.82.16930 The graph I try to create looks like : fileReader -> Matroska Splitter -> th...
2009 Sep 19
2
Many improvements and a few problems
...still improve I think, with a better and quicker adaptation to higher motion or detail parts, even going beyond the target bitrate for a moment, maybe. I tried -soft-target but I don't see a great difference. 2) Latest versions produce different OGG streams which challenge some players and splitters. I think the change has been somewhere between the stable ffmpeg2theora (march 2009) and this summers builds: .OGV produced now are not recognized by MPC-HC's internal OGG splitter, which worked well for all files previously. If Haali splitter is installed, it can handle most files, but in...
2004 Apr 20
4
wxRuby 0.3.0 has been released!
wxRuby 0.3.0 has been released and is now available for download from RubyForge at: http://wxruby.rubyforge.org/ This release includes binary builds for Max OS X Panther and MS Windows. Hopefully, within a couple weeks I will release RubyGems for the source, and RubyGem binaries for Mac, Windows, and Linux. Please report any bugs or feature requests here:
2005 Dec 29
0
Javascript Window splitter
Hello, I submitted a new JS component with ID 3355 http://dev.rubyonrails.org/ticket/3355. It has the following features until now: -Split a window Vertically or Horizontally. -Drag/Drop the splitter to change the size of the splitted windows -Double click on splitter hide either the left/right or up/down panel (close side is an option) -Position the container with options (top, left, height, width) - Options to size the proportion of the panels. - Splitter may be an image or a <DIV> I...
2008 Nov 26
3
2 Asterisks to one PBX - E1 conection
...terisk servers. My question is how to connect these two Asterisks to one E1 card on PBX, and when primary Asterisk server fails not to have to manually pull out E1 cable from primary server and plug it in secondary server in order to have active connection to E1 card on PBX. Is there some kind of splitter which, on one side can accept two E1 connections from Asterisks and on the other side one E1 link from PBX. This splitter must also recognize towards which one of two E1 links on Asterisk side it should send signals to. eg. when primary Asterisk fails this splitter should send signals to its eg. po...
2006 Dec 14
5
wxruby2-preview Gauge and wx-sugar with SplitterWindow
...wxruby2-preview (0.0.36) windows, the colours seem to be ignored, i.e. no matter what you change it to, its always blue on grey. - on wxruby2-preview (0.0.37) OS X, the background does change but not the foreground - is this an OS restriction? i.e. is the bar always blue in OS X? (2) expanding SplitterWindow''s content in wx-sugar Basically, I need a SplitterWindow with a ListBox and a TextCtrl, the following snippet creates just that, but the contained controls do not expand to fit the splitter''s panels (they just appear small). I''ve tried setting the minsize and pr...
2010 Jul 22
3
POE Splitters
...ion where I have one cable run from the feed area to the service area. I have three devices that I need to power at the service area. Is anyone aware of a device that will take the POE from the cable run and then allow me to split it to two or three devices at the service end? When I search for splitter all I get are the injectors, but I figure someone has to make something.... I realize I'll need a power adapter with enough amps to power the full load at the end. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/at...
2007 Apr 26
3
FXSplitter width is 1 until created
Why is the width of an FXSplitter equal to 1 before the FXSplitter#create method is called? My splitter is configured to have LAYOUT_FILL_X, so wouldn''t its width be determined before its children were created? It''s not really a big deal, but I was configuring the split based on a preferences file during init...
2020 Aug 05
10
[RFC] Machine Function Splitter - Split out cold blocks from machine functions using profile data
Greetings, We present “Machine Function Splitter”, a codegen optimization pass which splits functions into hot and cold parts. This pass leverages the basic block sections feature recently introduced in LLVM from the Propeller project. The pass targets functions with profile coverage, identifies cold blocks and moves them to a separate section. T...
2007 May 28
8
sash position problem
Hi, I''ve written a small app implementing SplitterWindow and have a problem with specifying the sash position on Windows. At the moment, I call split_vertically and pass it a positive integer for position. This works as expected on FreeBSD and Linux (Ubuntu and Debian), but seems to have no effect on Windows. Is there something particular I need...
2004 Apr 24
0
Crashes in wxRuby 0.3 (was: wxRuby splitter sampleproblems)
Curt Hibbs wrote: > Kevin Smith wrote: >>On the other hand, I do not want wxRuby to get a bad reputation. Perhaps >>it is worth fixing them, and releasing a 0.4 (or 0.3.1). > > I guess this really hinges on when "reasonably soon" is likely to be. Are we > talking a month? two months? four months? Good question. I should have a better idea by the end of this
2010 Jul 20
1
ruby\samples\FXRuby\splitter.rbw
I am running the above sample and there are 3 panels (and, thus, two, uh, sliders). The left hand slider behaves the way I want. That is, when I move it left or right, the right hand slider does not move. The right hand slider does not do that. When I move it ... it moves the left hand slider. How do I make the right hand slider behave like the left hand slider? - - - - On a slightly
2020 Aug 05
3
[RFC] Machine Function Splitter - Split out cold blocks from machine functions using profile data
...tlined functions tend to have identical function bodies > (e.g., assert-fail etc); they can be deduplicated by linker with careful > function naming. This reduces code-size regardless of function merging and > across the entire program. This technique should also help Machine Function > splitter in some cases but at some cost to the link time. > yes -- I think this can also be achieved with the partial inlining pass. - It will be difficult to reduce argument setup and restore code in the HCS > except in some cases like tail call, internal function calls, non-returning > function...
2020 Aug 10
2
[RFC] Machine Function Splitter - Split out cold blocks from machine functions using profile data
...David Li <davidxl at google.com>, Eric Christopher <echristo at google.com>, Sriraman Tallam <tmsriram at google.com>, aditya kumar <hiraditya at gmail.com>, "efriedma at codeaurora.org" <efriedma at codeaurora.org> Subject: [llvm-dev] [RFC] Machine Function Splitter - Split out cold blocks from machine functions using profile data Greetings, We present “Machine Function Splitter”, a codegen optimization pass which splits functions into hot and cold parts. This pass leverages the basic block sections feature recently introduced in LLVM from the Propeller proj...
2012 Mar 24
3
Handling 8GB .txt file in R?
Hi, I am mediocre at R, maybe 1000 hours experience, but I received an 8GB dataset and I don't know what to do with it. I have to do extensive analysis over it for my Honours thesis. I can't even import it. I've tried; - Splitting it up using the free csv-splitter-1.1.zip that seems to be working for everyone else (it doesn't work for me, it just outputs 1 single line). - Splitting it with Text Splitter doesn't work because you have to load it into memory first. - Importing using BigMemory's big.matrix(), however my computer just freezes. - Impor...
2010 Aug 17
2
SEL_UPDATE not responsive
I have read what I could about SEL_UPDATE and I understand that the block(s) that get called "from" SEL_UPDATE only get called when "there is no more work to do". I took the splitter.rb example that comes with FXRuby. I put in a "puts" in one of the SEL_UPDATE blocks and I get about 4 a second. Not awful ... but ... why is it so slow? In my code which is ... more or less ... similar to splitter.rb (just a lot more widgets and buttons) and a single SEL_UPDATE block...
2007 May 31
0
[1040] trunk/wxruby2/swig/Events.i: Add List and Splitter constants, also EVT_SIZING and EVT_MOVING
...x 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[1040] trunk/wxruby2/swig/Events.i: Add List and Splitter constants, also EVT_SIZING and EVT_MOVING</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>1040</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-05-31 17:14:53 -0...
2004 Aug 19
28
Documents, Views and DocManagers
Hi, Are there any effort in making wxDocument, wxView, etc types of classes avaiable under wxRuby? For supporting SDI/MDI architecture. Cheers, Phuah Yee Keat
2006 Nov 27
1
Theora DirectShow component questions - help!
...build the DLL. I then registered the ax file using the regsvr32 tool. Then I started up the DirectShow tool called 'GraphEdit' where you can see all the installed DirectShow filters and create the filter graphs. In the list of all DS filters, I could find the following 3 filters: Source Splitter Video Decoder The source seems the be the filter to open and read an already Theora encoded file. The splitter seems to have only 1 input pin but I'm not sure what this would be used for. The video decoder has 1 input and 1 output pin and would probably be for decoding a Theora encoded file t...