Mirror DSL 1.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Mirror DSL 1.3 (Default branch)
# 1  
Old 01-05-2009
Mirror DSL 1.3 (Default branch)

Mirror DSL is a simple DSL layer to make JavaReflection easier.License: The Apache License 2.0Changes:
The main change to this release of Mirror wasadding ReflectionProviders, a set of interfaces toallow the user to use her own reflection code.Besides that, the documentation was translated toBrazilian Portuguese, Javadoc was added, and somebugs were fixed (like not running under Java 5).Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. SCO

DSL on SCO OpenServer 5.0.7

I have a dual boot computer with Windows 7 Pro 64 on one drive and SCO OpenServer 5.0.7 on another drive. The DSL modem works perfectly on the Windows side; I can input the gateway and DNS address 192.168.1.1 in Windows network configuration. On the UNIX side, I created the /etc/resolv.conf... (8 Replies)
Discussion started by: Transpower
8 Replies

2. HP-UX

What is the difference between DRD and Root Mirror Disk using LVM mirror ?

what is the difference between DRD and Root Mirror Disk using LVM mirror ? (3 Replies)
Discussion started by: maxim42
3 Replies

3. Solaris

What is mirror and sub mirror in RAID -1 SVM

Hi , I am new to SVM .when i try to learn RAID 1 , first they are creating two RAID 0 strips through metainit d51 1 1 c0t0d0s2 metainit d52 1 1 c1t0d0s2 In the next step metainit d50 -m d51 d50: Mirror is setup next step is metaattach d50 d52 d50 : submirror d52 is... (7 Replies)
Discussion started by: vr_mari
7 Replies

4. UNIX for Dummies Questions & Answers

DSL Cfdsik error

I'm trying to instal dsl to hd ,but cfdisk comand returns an error. dmesg | grep hda returns : Optarac DVD RW AD-7530B, ATAPI CD/DVD-rom drive attached ide-scsi driver So i figure that is the problem.Right? What should i do? (1 Reply)
Discussion started by: SNAk55
1 Replies

5. Solaris

ZFS Mirror versus Hardware Mirror

I've looked a little but haven't found a solid answer, assuming there is one. What's better, hardware mirroring or ZFS mirroring? Common practice for us was to use the raid controllers on the Sun x86 servers. Now we've been using ZFS mirroring since U6. Any performance difference? Any other... (3 Replies)
Discussion started by: Lespaul20
3 Replies

6. Linux

cfdisk in DSl

ive been playing around in dsl (damn small linux) live for some time and i love the simplicity of it. but when i go into cfdisk to partition my hard drive, it says like "Fatal Error:Does not have permission" i am trying out Xandros desktop os 2.0 right now on my laptop. Can some one help me... (4 Replies)
Discussion started by: Texasone
4 Replies

7. UNIX for Advanced & Expert Users

DSL Router

How do I configure my Solaris system to connect to internet thro Linksys DSL Router? Thanks in adavnce. (9 Replies)
Discussion started by: praveenk
9 Replies

8. UNIX for Dummies Questions & Answers

dsl out

i have 5 computers on a network behind a firewall, once in a while my DSL service will get knocked out and will come back in like 20 minutes or so, but during those 20 minutes, i will be able to view my website, but i will not be able to retrieve my mail, nor will be able to ftp or telnet into my... (12 Replies)
Discussion started by: norsk hedensk
12 Replies
Login or Register to Ask a Question
RoPkg::Simba::Mirror(3pm)				User Contributed Perl Documentation				 RoPkg::Simba::Mirror(3pm)

NAME
RoPkg::Simba::Mirror - a mirror class VERSION
0.1.3 DESCRIPTION
RoPkg::Simba::Mirror is a class used to hold all the information a mirror has. Also, the RoPkg::Simba::Mirror can be used to add/del/update a mirror to/from the database. Simba is derivated from RoPkg::DBObject. SYNOPSIS
!#/usr/bin/perl use RoPkg::DB; use RoPkg::Simba::Mirror; sub main { my $dbp = new RoPkg::DB(); $dbp->Add('dbi:mysql:database=mysql;host=localhost', 'root', '', 'local'); my $m = new RoPkg::Simba::Mirror(dbo => $dbp, dbo_method => 'db_local'); $m->Name('debian'); $m->Load(); } main(); SUBROUTINES
/METHODS All methods raise OutsideClass exception when called outside class instance. Besides this, each method, may raise other exceptions. Check each method section to find out more. new() The class constructor. At this moment, it just calls RoPkg::DBObject->new() . Please read the RoPkg::DBObject manual page for more information about the new() parameters. table() Returns the name of the mirrors database table. Add() Adds the mirror to the database. This method is a wrapper for RoPkg::DBObject::SQL_Insert . On success 0 is returned. On error, DBI exception is raised. Delete() Deletes the current mirror from the database. Before calling this method, you should set the id of the mirror . If you don't set the id Param::Missing exception is raised. On database operation success, 0 is returned. On database error, DBI exception is raised. Update() Update the current mirror object with the database. Before calling this method, you should set the id of the mirror . If you don't set the id Param::Missing exception is raised. On database operation success, 0 is returned. On database error, DBI exception is raised. Load() Load the mirror information from the database, into the current object. Before calling this method you should have set id or Name. If id or Name are not set, then Param::Missing is raised. On database operation success 0 is returned. On database error, DBI exception is raised. GetMethods() Returns a array with the current object methods names. In scalar context returns the number of methods. The following methods are get/set methods for all fields of a mirror. *) id *) Name *) Description *) HomeSite *) LocalDir *) Size *) SyncMethod *) CommandID *) LastErrorCode *) Active *) InProgress *) SyncSource *) SyncSourceUser *) SyncSourcePass *) SyncSourceModule *) Contact *) LastUpdated *) LastUpdateDuration *) LastUpdateSpeed *) LastUpdateFilesNo *) LastUpdateBytes *) LocalURL *) StdOut *) StdErr DIAGNOSTICS
Unpack the source, and use 'make test' command CONFIGURATION AND ENVIRONMENT
This module does not use any configuration files or environment variables DEPENDENCIES
RoPkg::DBObject and RoPkg::Exceptions INCOMPATIBILITIES
None known to the author BUGS AND LIMITATIONS
None known to the author PERL CRITIC
This module is perl critic level 2 compliant (with 1 exception) SEE ALSO
RoPkg::Simba RoPkg::Simba::Mirrors RoPkg::DBObject RoPkg::Object AUTHOR
Subredu Manuel <diablo@iasi.roedu.net> LICENSE AND COPYRIGHT
Copyright (C) 2005 Subredu Manuel. All Rights Reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The LICENSE file contains the full text of the license. perl v5.14.2 2006-07-04 RoPkg::Simba::Mirror(3pm)