Displaying 20 results from an estimated 1000 matches similar to: "severs don 't show in Network Neighbourhood"
2013 Sep 13
1
Network Neighbourhood samba 4
When you say, there is not network neighbourhood in samba 4 you mean that:
1: all the workstations show in the network neighbourhood except the domain controller.
2: There is absolutly nothing in the network neighbourhod, no workstations nor DC.
2023 Sep 06
2
LIBGUESTFS supported version
Hi Team,
Am trying to install libguestfs in my redhat 8.2 version default its installing 1.38.4. Could you please help us with the installation of version 1.50 libguestfs (through command line in RHEL 8.2) and supported RHEL versions of 1.50.
Regards,
Teja K
From: Teja Konapalli
Sent: Tuesday, September 5, 2023 8:16 PM
To: libguestfs at redhat.com
Subject: LIBGUESTFS supported version
Hi
2013 Mar 08
1
[LLVMdev] Tool to convert to backend assembly instruction file "llc"
Teja,
I just checked my version of llc to make sure it worked on arm and
x86_64 respectively. The website llvm.org hosts a manual page for this
tool at http://llvm.org/docs/CommandGuide/llc.html. I think this tool
from the ample LLVM armory will accomplish what you are looking to do.
All the best in your endeavors,
Shaun
Shaun Hubbard
On Mar 7, 2013, at 10:39 PM, teja tamboli
2013 Mar 08
0
[LLVMdev] Tool to convert to backend assembly instruction file
Teja,
Your mention of .s being bytecode confuses me, but if you're asking how to lower a bitcode (.bc) or IR file (.ll) to assembly (.s) than llc is the tool you are looking for.
llc -O2 path/to/bitcode/input.bc -o output.s
-Chris
On Mar 7, 2013, at 10:39 PM, teja tamboli wrote:
> Hello,
>
> I am looking for tool to convert file from either (.s) bytecode or (.bc) bitcode to
2012 Nov 19
1
[LLVMdev] Inserting dead code in IR byte code
Hi Duncan,
I mean both. In order to generate random code, I have to add function
definitions and also for robustness I have to call these functions from
already existing functions. So, have to add calling type of instructions
also in the existing function.
In future I also have to change instructions for simple substitution meaning
'add a, b' can be done using 'sub a, 0' and
2004 Aug 06
3
Problem with Icecast2/Ices streaming MP3.
Hello everyone,
I am running Icecast 2.0.0 with ices-3.0. I run ices on a machine which
has all the mp3 files I am playing and stream these mp3 to Icecast which
is running on another machine. Every now and then, say 2 hours. Ices
keeps churning out errors saying updating meta data and socket errors
and keeps retrying and after some time it suceeds for one file and then
when playing the next file
2013 Mar 13
0
[LLVMdev] Generating IR bytecode files of httpd source code
On 3/12/13 7:16 PM, teja tamboli wrote:
> Hi,
>
> I want to compile apache httpd using LLVM compiler. However, I am
> interested in generating llvm bytecode files [.s or .ll] files along
> with its executables. I followed steps mentioned in link :
> http://stackoverflow.com/questions/13851661/compiling-apache-httpd-into-llvm-bytecode-using-clang
>
> However after
2013 Mar 08
2
[LLVMdev] Tool to convert to backend assembly instruction file
Hello,
I am looking for tool to convert file from either (.s) bytecode or (.bc)
bitcode to .asm file. Basically assembly instruction file for my x86
backend. I think so we can use llvm-objdump. However I am not able to
figure out its exact options. Could you please tell me how to do that?
--
Thanks,
Teja
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Oct 18
2
Nested source() errors
Does anyone know of any issues with nesting source() calls within
multiple scripts? I have at least one script which always finds errors
when I source it but runs fine when run on its own. It containd source()
calls to other scripts and it seems to fail during the first nested
source() command.
Ken
Kenneth B. Pierce Jr.
Research Ecologist
Landscape Ecology, Modeling, Mapping and Analysis
2007 Sep 07
2
Running a PERL script from R
Is there a way to run a simple perl script from R?
Kenneth B. Pierce Jr.
Research Ecologist
Landscape Ecology, Modeling, Mapping and Analysis Team
PNW Research Station - USDA-FS
3200 SW Jefferson Way, Corvallis, OR 97331
ken.pierce@oregonstate.edu
541 750-7393
http://www.fsl.orst.edu/lemma/gnnfire
http://www.fsl.orst.edu/R_users/index.php
[[alternative HTML version deleted]]
2013 Feb 25
0
[LLVMdev] Queries regarding function's arguments data type
On 2/25/13 1:44 PM, teja tamboli wrote:
> Hi all,
>
> I am working on my Master's project in security and I am trying to
> iterate over the argument list of the function. Basically I need to do
> following things :
Interesting. Just out of curiosity, can you tell us what your project
is about?
>
> 1. Check data type of each argument of the argument list of the
2012 Oct 08
0
[LLVMdev] Inserting a function call using LLVM
Hi Teja,
> I am new to LLVM and interested in using LLVM to work on a research project for
> my Master's degree.
> My idea is following -
>
> 1. I have a simple C program basic.c -
> #include <stdio.h>
> int main() {
> printf("Hello World");
> return 0;
> }
>
> 2. I will generate IR byte code for this basic.c using -
> llvm-gcc
2012 May 22
3
[RESQUE]Question about queues
I run Resque with x ''general'' queues. With ''general'' I mean a queue that
may run every type of Worker. Or in the Rake command: COUNT=x QUEUE=*
rake resque:work
When a worker runs a job of a specific class, it may not run another job
of the same class simultaniously. This job has to wait until the
previous job has finished before it may start.
BTW The reason
2023 Sep 05
1
LIBGUESTFS supported version
Hi Team,
Am trying to install libguestfs in my redhat 8.2 version default its installing 1.38.4. Could you please help us with the installation of version 1.50 libguestfs and supported RHEL versions.
Regards,
Teja K
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libguestfs/attachments/20230905/2d59d029/attachment.htm>
2006 Sep 12
4
variables in object names
Is there any way to put an argument into an object name. For example,
say I have 5 objects, model1, model2, model3, model4 and model5.
I would like to make a vector of the r.squares from each model by code
such as this:
rsq <- summary(model1)$r.squared
for(i in 2:5){
rsq <- c(rsq, summary(model%i%)$r.squared)
}
So I assign the first value to rsq then cycle through models 2 through
2003 Jan 03
0
can see the netw. but not connect...
I've recently managed to install linux
which I'm pretty happy about :)
I've tried to set up my home network, now
this is what's giving me the head ache...
I can get my computers to ping eachother,
no problems, my XP and w2k computers can
see the linux box in the network
neighbourhod they can access the sort of
first layer of the linux box but no
further. I cannot access
2006 Sep 20
1
problem coercing truncated character vector to levels
Dear R wizes,
I have a data.frame of species abundances with column names consisting
of 4 letter codes then an underscore and a number like this:
abco_1, abco_2, abco_3, psm_1, psme_2, psme_3, etc.
I would like to get an identifier for all the abco, and psme and other
species etc.
I used
spec.fact<-substring(names(spec.count),1,4)
To make a vector of the first 4 letters of
2013 Mar 07
1
[LLVMdev] Function permutation at IR bytecode level
Hi All,
I am working on writing pass in LLVM and interested in doing function
permutation at intermediate representation byte code level?
If I have lets say C program having three functions and its corresponding
IR bytecode.
void findLen(char a[10])
{
int tmp = strlen(a);
printf("Len is : %d\n", tmp);
}
void muladd(int a, int b, int c)
{
int tmp = a + b;
int tmp1 = tmp *
2006 May 26
1
updating two or more divs simultaniusly
Hi,
I want to update two divs simultaniously in a page. Can anyone help me please?
Emiliano
2012 Nov 19
0
[LLVMdev] Inserting dead code in IR byte code
Hi Teja,
> I am working on my Master's project in security and for this I need to do
> following things :
>
> 1. I have a IR bytecode of the main program. I want to insert dead code from
> other source files (e.g. cygwin files or the Linux files) in main program's IR
> byte code.
do you mean adding additional functions? Or do you mean adding extra
instructions to