Main > Free Download Search >

Free berkeley california software for mac

berkeley california

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 74
Berkeley UPC 2.8

Berkeley UPC 2.8


Berkeley UPC is regarded as a highly-efficient, high-quality extension of the C programming language which is designed for high performance computing on large-scale parallel machines. more>> <<less
Download (27.2MB)
Added: 2008-11-13 License: Free Price:
downloads
 
Other version of Berkeley UPC
Berkeley UPC (Unified Parallel C) 2.8.0Unified Parallel C (UPC) is an extension of the C ... ) 2.8.0 - University of California, Berk. Berkeley UPC. Unified Parallel C (UPC) is an extension
License:Freeware
Download (14MB)
15 downloads
Added: 2008-11-12
Berkeley UPC 2.4.0Berkeley UPC - Portable, high-performance Unified Parallel C compiler. Berkeley UPC is the first UPC implementation available for Mac OS X, and delivers competetive
License:Freeware
Download (38.1MB)
701 downloads
Added: 2006-06-26
Berkeley UPC 2.10.0Berkeley UPC 2.10.0 is developed as an useful extension of the C programming language designed ... Berkeley UPC is the first UPC implementation available for Mac OS X, and delivers competetive
Price: Notavailable
License:Freeware
Download
downloads
Added: 2009-11-01
California Hotels 1.0

California Hotels 1.0


California Hotels is a freeware to manage hotel deals from your favorite Californian destinations. more>> <<less
Download (184K)
Added: 2009-06-12 License: Free Price:
downloads
California Coast Cams 1.4

California Coast Cams 1.4


California Coast Cams - View California coast webcams more>> California Coast Cams - View California coast webcams

View California beach and coastal webcams in this widget.
Choose from North, Central or Southern coast or cycle through all webcams. Choose from refresh rate of 5 seconds to 30 minutes.
Enhancements
- Fixed Morro Bay cam feed.

<<less
Download (358KB)
Added: 2006-02-25 License: Freeware Price: FREE
196 downloads
 
Other version of California Coast Cams
California Coast Cams 1.4California Coast Cams - View California coast webcams. California Coast Cams 1.4 - Travel ... View California beach and coastal webcams in this widget. Choose from North, Central or
License:Freeware
Download (358KB)
1339 downloads
Added: 2006-02-25
California Coast Cams 1.2widget allowing you to view California beach and coastal webcams in it. California Coast Cams 1 ... California Coast Cams 1.2 is a widget allowing you to view California beach and coastal webcams
License:Free
Download (358K)
downloads
Added: 2005-08-12
Seamus Berkeley Fine Art Paintings 1.0

Seamus Berkeley Fine Art Paintings 1.0


Seamus Berkeley Fine Art Paintings - Paintings of people and places from around the world more>>
Take a look at paintings of people and places from around the world with this Widget.

Interested in knowing more about oil paintings people, landscapes or still life compositions?

Click on any of the images for links where you can download and print images of paintings or to see QuickTime movies of paintings in progress.

Have fun!
<<less
Download (502KB)
Added: 2006-07-19 License: Freeware Price:
1194 downloads
 
Other version of Seamus Berkeley Fine Art Paintings
Seamus Berkeley Fine Art Paintings 1.0Seamus Berkeley Fine Art Paintings - Seamus Berkeley Fine Art Paintings - Paintings of ... Seamus Berkeley
Price: FREE
License:Freeware
Download (502KB)
180 downloads
Added: 2006-07-19
Oracle Berkeley DB Java Edition 3.3.82

Oracle Berkeley DB Java Edition 3.3.82


High performance transactional storage engine. more>> High performance transactional storage engine.

Oracle Berkeley DB Java Edition is a high performance, transactional storage engine written entirely in Java. Like the highly successful Berkeley DB product, Berkeley DB Java Edition executes in the address space of the application, without the overhead of client/server communication.
It stores data in the applications native format, so no runtime data translation is required. Berkeley DB Java Edition supports full ACID transactions and recovery. It provides an easy-to-use, programmatic interface, allowing developers to store and retrieve information quickly, simply and reliably.

Main features:
- Local, in-process data storage.
- Schema-neutral, application native data storage.
- Keyed and sequential data retrieval.
- Easy-to-use Java Collections API.
- Persistence API for accessing Java objects.
- Single process, multi-threading model.
- Record level locking for high concurrency.
- Support for secondary indexes.
- In-memory, on disk or both.
- Configurable background cleaner threads re-organize data and optimize disk use.
- Full ACID compliance.
- Selectable isolation levels and durability guarantees, configurable on a per-transaction basis.
- Managed transactions using the Java Transaction API (JTA).
- J2EE application server integration using J2EE Connector Architecture(JCA).
- Provides support for monitoring, auditing and administration using the Java Management Extensions (JMX).
- Catastrophic and routine failure recovery modes.
- Timeout based deadlock detection.
- Hot and cold backups, log file compaction, and full database dumps.
- 100% pure Java for portability and ease of development.
- Single JAR file - easy to install, runs in the same JVM as the application.
- Java 1.4.2 or later Standard Edition JVM required.
- Programmatic administration and management-zero human administration.
- API for routine administrative functions.
- Small footprint 772KB.
- Scalable to terabytes of data, millions of records.
- Source code, test suite included.

System requirements:
-

Enhancements
- Fix a bug that somtimes causes two log cleaner threads (when multiple threads are configured or multiple app threads call Environment.cleanLog) to select the same file to clean. This can result in two attempts to delete the log file after cleaning. The second attempt causes an exception to be traced repeatedly, but no other side effect. The problem is transient and goes away if the Environment is closed and re-opened. An example of the exception is below. The symptom is that this exception occurs repeatedly, and the file is not present.
- Fix a bug that could cause a LogFileNotFoundException when using an XAEnvironment, if a prepared transaction is not ended prior to a crash and then the prepared transaction is aborted after recovering from a crash. [#17022] (3.3.79)
- Fix a bug that prevented deferred-write record deletions from being made durable by Database.sync, if a crash occurs after Database.sync but prior to the next checkpoint. Under rare circumstances this could also result in a LogFileNotFoundException later when accessing the deleted entry. [#16864] (3.3.78)
- Fix a bug that prevents log cleaning from functioning properly when a temporary DB (DatabaseConfig.setTemporary) is large enough to overflow the JE cache. Also fix a bug that could in rare cirumstances cause an endless loop while performing log cleaning. [#16928] (3.3.78)
- Fix a bug that caused an infinite loop under certain timing dependent circumstances when using EnvironmentConfig.setSharedCache(true). This bug was reported in two different forum posts. Thanks to Kevin Jackson and Vyacheslav Lukianov for reporting it! [#16882] (3.3.78)
- Improve output of partial information in DatabaseEntry.toString. Thanks to archie172 for reporting this on OTN. [#16929] (3.3.78)
- Fix a bug in SecondaryCursor.dup that required the cursor to be initialized. This method, like Cursor.dup, may now be called whether the cursor is initialized or not. Thanks to archie172 for reporting this on OTN. [#16930] (3.3.78)
- Fix a bug that caused NullPointerException when opening an XAEnvironment under certain circumstances, when prepared but uncommitted transactions are present in the JE log and must be replayed during recovery. This bug was reported on the OTN forum by Matthieu Bentot -- thank you Matthieu! An example of the stack trace is below.
- Fix a bug that caused LogFileNotFoundException in rare circumstances for an Environment having one or more Databases configured for duplicates (or one or more SecondaryIndexes with MANY_TO_XXX relationships). The bug only occurs when a single secondary/duplicate key value is associated with a large number of records/entities; specifically, the sub-Btree for a single duplicate key value must have at least 3 levels. [#16712] (3.3.76)
- Fix a bug that caused BufferOverflowException while writing transactional records. This could occur if multiple threads were writing to an environment while using the same Transaction. [#17204]
- Direct Persistence Layer (DPL), Collections and Bind packages - Fix a bug that causes the EvolveStats returned by EntityStore.evolve to contain zeros, even when entities are evolved and written, when no EvolveListener is configured. Thanks to jhalex on OTN for reporting this. [#17024] (3.3.78)

<<less
Download (4.9MB)
Added: 2009-05-18 License: Freeware Price: FREE
176 downloads
 
Other version of Oracle Berkeley DB Java Edition
Oracle Berkeley DB Java Edition 3.0.11Oracle - Oracle Berkeley DB Java Edition - High performance
License:Freeware
Download (5.5MB)
1246 downloads
Added: 2006-06-01
California Website Development 1.0

California Website Development 1.0


Free Dashboard informational widget for your Mac more>> Aimersoft Mac Video Converter is the most powerful Mac Video Converter for you to convert video on Mac OS X (Leopard supported). With this awesome Mac Video Converter, you can easily finish the conversion such as convert MPEG to AVI; convert AVI to MP4<<less
Download (107KB)
Added: 2009-05-23 License: Freeware Price: FREE
183 downloads
Mega Millions 1.0

Mega Millions 1.0


Mega Millions - displays current value of the Mega Millions Lottery more>>
Mega Millions is tool that displays the current value of the Mega Millions Lottery. The back of the widget has a random number generator.

Mega Millions tickets cost $1.00 per play.

Players may pick six numbers from two separate pools of numbers: five different numbers from 1 to 56, and one number from 1 to 46 or select Easy Pick. You win the jackpot by matching all six winning numbers in a drawing.

Overall chances of winning a prize are 1 in 40. Chances of winning the jackpot are 1 in 175,711,536.

Mega Millions is played in California, Georgia, Illinois, Maryland, Massechusetts, Michigan, New Jersey, New York, Ohio, Texas, Virginia, and Washington.
If you win the lottery using the random number generator, let me know.
<<less
Download (778KB)
Added: 2007-02-23 License: Freeware Price:
985 downloads
SimpleAuthority 1.2

SimpleAuthority 1.2


SimpleAuthority is a free Certification Authority (CA) more>>
SimpleAuthority is a free Certification Authority (CA). It generates keys and certificates that provide cryptographic digital identities for a community of people and/or computer servers. These identities are designed to be used in other applications for security purposes within this community.
SimpleAuthority was created in order to be very easy to use and does not require an external database or similar supporting components. It is built on The Legion of the Bouncy Castle cryptographic library.
SimpleAuthority can be used to generate keys and certificates for:
- Secure email - for digital signing and encryption of email
- VPN access - to provide a much higher level of security than username/password access
- Client SSL authentication - to authenticate a person to a Web Server, such as to restrict access to a subversion repository or other online content
- Server SSL authentication - to authenticate a Web Server to people within the community
Main features:
- General Purpose certificates (for secure email, VPN and/or client SSL use)
- SSL server certificates
- RSA 1024/2048/4096 key lengths, SHA-1/256/384/512 digest algorithms
- PKCS#12/DER and PEM-encoding formats
- Supports random password generation for new Identity files
- Can be used to generate self-signed certificates, or multi-CA hierarchies
- Software version checks
- Help page
<<less
Download (4.5MB)
Added: 2007-07-16 License: Freeware Price:
903 downloads
Eichler Screensaver 1

Eichler Screensaver 1


Eichler Screensaver allows your to dispay apartments in Northern California on your more>>

Eichler Screensaver allows your to dispay apartments in Northern California on your desktop.

<<less
Download (3.4MB)
Added: 2007-03-24 License: Freeware Price:
downloads
 
Other version of Eichler Screensaver
Eichler Screensaver 1.0Eichler Screensaver - eichler homes in Northern California. Eichler Screensaver 1.0 - Michael
License:Freeware
Download (3.4MB)
962 downloads
Added: 2007-03-16
Inoculan Client 49.00

Inoculan Client 49.00


Inoculan Client offers you an extremely useful application which is the premier antivirus solution for networked environments offering unmatched management and virus protection. more>>

Inoculan Client 49.00 offers you an extremely useful application which is the premier antivirus solution for networked environments offering unmatched management and virus protection.

Exclusive features of InoculateIT include Real-Time Cure, Universal Manager, Virus Wall, Virus Quarantine, Hands-Free Updates, Extensive Alerting Options, Internet Web Browser Integration and Messaging Protection.

InoculateIT is certified by the International Computer Security Association (ICSA) to detect 100% of viruses "in the wild" and ensures your network is protected against potentially damaging and costly virus incidents. InoculateIT is fully integrated with AntiVirus clients for all major desktop systems.

<<less
Download (1.1MB)
Added: 2005-03-07 License: update/patch Price:
downloads
Cluck the Chicken Widget 1.0

Cluck the Chicken Widget 1.0


Save yourself from indecision. Cluck the Chicken will answer any question more>>
Cluck the Chicken was discovered in Petaluma, California, where they honor all things chicken. Really. Ask any question of her and you will get a snappy comeback that is positively poultry. Clucks magic powers comes from giving birth 5 days a week and being dead. You would have an attitude, too.

Save yourself from indecision, download Cluck the Chicken today.


<<less
Download (320KB)
Added: 2005-06-29 License: Freeware Price:
1578 downloads
BetterSearch 1.9

BetterSearch 1.9


BetterSearch is an ideal dial up connectivity utility - An extension for Firefox which enhances Google (all international flavours, too), MSN Search, Yahoo Search, A9 (web results), more>>

BetterSearch 1.9 is an ideal dial up connectivity utility - An extension for Firefox which enhances Google (all international flavours, too), MSN Search, Yahoo Search, A9 (web results), AllTheWeb, bookmarks by adding previews (thumbnails) and Amazon product images and info (type, price, rating for US/DE/UK/CA/FR products), a quick preview feature as well as "Open in New Window", "Site Info" and "Wayback Machine" links to the search results.

<<less
Download (24.4KB)
Added: 2005-08-29 License: Freeware Price:
downloads
PostgreSQL Database Server for Mac OS X 8.1.4

PostgreSQL Database Server for Mac OS X 8.1.4


PostgreSQL Database Server for Mac OS X offers a simple and effective relational database system. more>>

PostgreSQL Database Server for Mac OS X 8.1.4 offers a simple and effective relational database system. It has more than 15 years of active development and a proven architecture that has earned it a strong reputation for reliability, data integrity, and correctness. It runs on all major operating systems, including Linux, UNIX (AIX, BSD, HP-UX, SGI IRIX, Mac OS X, Solaris, SunOS, Tru64), BeOS, and Windows. If you need a PostgreSQL Database GUI, you can download NAVICAT PostgreSQL GUI.

It supports to import CSV, XML or other formats to PostgreSQL. PostgreSQL is an open-source descendant of this original Berkeley code. It supports a large part of the SQL: 2003 standard and offers many modern features: complex queries, foreign keys, triggers, views, transactional integrity, and multi-version concurrency control. Also, PostgreSQL can be extended by the user in many ways.

Enhancements: May include unspecified updates, enhancements, or bug fixes.

<<less
Download (13.9MB)
Added: 2006-08-24 License: Freeware Price:
downloads
After Dark Updater 4.0.4

After Dark Updater 4.0.4


This will update any previous version of the After Dark engine to After Dark 4.03, which is compatible with Mac system software versions 7.1 to 8.0 more>> This will update any previous version of the After Dark engine to After Dark 4.03, which is compatible with Mac system software versions 7.1 to 8.0. The updater also upgrades the After Dark Screen Posters extension Version 3.0 to Version 3.6 NOTE: The Screen Posters 3.5 extension (included in the 4.03 updater, which was available prior to 12/16/97) caused an error on PowerMacs.
Requirements:
After Dark
<<less
Download (778K)
Added: 1997-12-17 License: Free Price:
downloads
Weather Radio 1.0

Weather Radio 1.0


Now you can listen to Weather Radio from the National Weather service. Listen to Streams from the National Oceanic and Aeronautical Administration (NOAA) directly from this widget more>>
Weather Radio 1.0 is designed to help you listen to Weather Radio from the National Weather service. Listen to Streams from the National Oceanic and Aeronautical Administration (NOAA) directly from this widget. Select from different regions of the USA. Great for traveling or keeping track of weather dangers in your area.

Supported States:

  • IN
  • IL
  • CA
  • WI
  • NE
  • FL
  • KY
Requirements:
  • Mac OS X 10.4 or later.
<<less
Download (118K)
Added: 2005-07-01 License: Free Price:
downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5