This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This is a bit of code from HP that proves they are crooks. | |
They stole the window.opener by changing its location | |
and then closed the window that it intended to launch. | |
Why? | |
--> | |
<script language="JavaScript" type="text/javascript"> | |
//--- create the new location string with | |
//--- cpqlogin.php and the original query string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static <T> Iterable<T> in(final Iterator<T> iterator) { | |
assert iterator != null; | |
class SingleUseIterable implements Iterable<T> { | |
private boolean used = false; | |
@Override | |
public Iterator<T> iterator() { | |
if (used) { | |
throw new IllegalStateException("SingleUseIterable already invoked"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ANTLR 2 License | |
We reserve no legal rights to the ANTLR--it is fully in the public domain. An | |
individual or company may do whatever they wish with source code distributed | |
with ANTLR or the code generated by ANTLR, including the incorporation of | |
ANTLR, or its output, into commerical software. | |
We encourage users to develop software with ANTLR. However, we do ask that | |
credit is given to us for developing ANTLR. By "credit", we mean that if you | |
use ANTLR or incorporate any source code into one of your programs (commercial |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.1 | |
1. Definitions. | |
1.1. "Contributor" means each individual or entity that creates or | |
contributes to the creation of Modifications. | |
1.2. "Contributor Version" means the combination of the Original Software, | |
prior Modifications used by a Contributor (if any), and the Modifications |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 1. | |
Definitions. | |
1.1. Contributor means each individual or entity that creates or contributes to | |
the creation of Modifications. | |
1.2. Contributor Version means the combination of the Original Software, prior | |
Modifications used by a Contributor (if any), and the Modifications made by |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Please note this should be read in the same way as the MIT license. | |
Please also note this licensing model is made possible through funding from | |
donations and the sale of support contracts. | |
License | |
Copyright (c) 2000 - 2017 The Legion of the Bouncy Castle Inc. (https:// | |
www.bouncycastle.org) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Eclipse Public License - v 1.0 | |
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC | |
LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM | |
CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. | |
1. DEFINITIONS | |
"Contribution" means: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 | |
- 1. Definitions. | |
- 1.1. "Contributor" means each individual or entity that creates or | |
contributes to the creation of Modifications. | |
- 1.2. "Contributor Version" means the combination of the Original | |
Software, prior Modifications used by a Contributor (if any), and the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MOZILLA PUBLIC LICENSE | |
Version 1.1 | |
--------------- | |
1. Definitions. | |
1.0.1. "Commercial Use" means distribution or otherwise making the Covered | |
Code available to a third party. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The MIT License | |
Copyright (c) 2009, Sun Microsystems, Inc. | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |
OlderNewer