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
SVN::Notify::Mirror::ConfigData(3pm)			User Contributed Perl Documentation		      SVN::Notify::Mirror::ConfigData(3pm)

NAME
SVN::Notify::Mirror::ConfigData - Configuration for SVN::Notify::Mirror SYNOPSIS
use SVN::Notify::Mirror::ConfigData; $value = SVN::Notify::Mirror::ConfigData->config('foo'); $value = SVN::Notify::Mirror::ConfigData->feature('bar'); @names = SVN::Notify::Mirror::ConfigData->config_names; @names = SVN::Notify::Mirror::ConfigData->feature_names; SVN::Notify::Mirror::ConfigData->set_config(foo => $new_value); SVN::Notify::Mirror::ConfigData->set_feature(bar => $new_value); SVN::Notify::Mirror::ConfigData->write; # Save changes DESCRIPTION
This module holds the configuration data for the "SVN::Notify::Mirror" module. It also provides a programmatic interface for getting or setting that configuration data. Note that in order to actually make changes, you'll have to have write access to the "SVN::Notify::Mirror::ConfigData" module, and you should attempt to understand the repercussions of your actions. METHODS
config($name) Given a string argument, returns the value of the configuration item by that name, or "undef" if no such item exists. feature($name) Given a string argument, returns the value of the feature by that name, or "undef" if no such feature exists. set_config($name, $value) Sets the configuration item with the given name to the given value. The value may be any Perl scalar that will serialize correctly using "Data::Dumper". This includes references, objects (usually), and complex data structures. It probably does not include transient things like filehandles or sockets. set_feature($name, $value) Sets the feature with the given name to the given boolean value. The value will be converted to 0 or 1 automatically. config_names() Returns a list of all the names of config items currently defined in "SVN::Notify::Mirror::ConfigData", or in scalar context the number of items. feature_names() Returns a list of all the names of features currently defined in "SVN::Notify::Mirror::ConfigData", or in scalar context the number of features. auto_feature_names() Returns a list of all the names of features whose availability is dynamically determined, or in scalar context the number of such features. Does not include such features that have later been set to a fixed value. write() Commits any changes from "set_config()" and "set_feature()" to disk. Requires write access to the "SVN::Notify::Mirror::ConfigData" module. AUTHOR
"SVN::Notify::Mirror::ConfigData" was automatically created using "Module::Build". "Module::Build" was written by Ken Williams, but he holds no authorship claim or copyright claim to the contents of "SVN::Notify::Mirror::ConfigData". perl v5.14.2 2012-07-04 SVN::Notify::Mirror::ConfigData(3pm)