- Sort Score
- Result 10 results
- Languages All
Results 1921 - 1930 of 6,682 for republic (0.08 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java
import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; public class XslTransformer { public static void main(String[] args) throws TransformerException, IOException { if (args.length < 3 || args.length > 4) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 05 19:36:14 UTC 2023 - 2.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
* * @author Pablo Bellver */ public class FilesSimplifyPathTest extends TestCase { public void testSimplifyEmptyString() { assertEquals(".", simplifyPath("")); } public void testSimplifyDot() { assertEquals(".", simplifyPath(".")); } public void testSimplifyWhiteSpace() { assertEquals(" ", simplifyPath(" ")); } public void testSimplify2() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 10.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
.putString("!!!", UTF_8) .hash()); } public void testCustomKey() throws Exception { SecretKey customKey = new SecretKey() { @Override public String getAlgorithm() { return "HmacMD5"; } @Override public byte[] getEncoded() { return new byte[8]; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 13.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java
* * @author Pablo Bellver */ public class FilesSimplifyPathTest extends TestCase { public void testSimplifyEmptyString() { assertEquals(".", simplifyPath("")); } public void testSimplifyDot() { assertEquals(".", simplifyPath(".")); } public void testSimplifyWhiteSpace() { assertEquals(" ", simplifyPath(" ")); } public void testSimplify2() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 10.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/DescendingMultiset.java
} return result; } @Override @CheckForNull public Entry<E> pollFirstEntry() { return forwardMultiset().pollLastEntry(); } @Override @CheckForNull public Entry<E> pollLastEntry() { return forwardMultiset().pollFirstEntry(); } @Override public SortedMultiset<E> headMultiset(@ParametricNullness E toElement, BoundType boundType) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jun 26 21:02:13 UTC 2023 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSignature.java
public static final int HMAC_SHA1_96_AES128 = 0x0000000F; public static final int HMAC_SHA1_96_AES256 = 0x00000010; public static final int ETYPE_ARCFOUR_HMAC = 23; public static final int ETYPE_AES128_CTS_HMAC_SHA1_96 = 17; public static final int ETYPE_AES256_CTS_HMAC_SHA1_96 = 18; private int type; private byte[] checksum; public PacSignature ( byte[] data ) throws PACDecodingException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashCodeTest.java
} public void testPadToLongWith4Bytes() { assertEquals(0x0000000099999999L, HashCode.fromBytesNoCopy(byteArrayWith9s(4)).padToLong()); } public void testPadToLongWith6Bytes() { assertEquals(0x0000999999999999L, HashCode.fromBytesNoCopy(byteArrayWith9s(6)).padToLong()); } public void testPadToLongWith8Bytes() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
public Date getPwdCanChangeTime () { return this.pwdCanChangeTime; } public Date getPwdMustChangeTime () { return this.pwdMustChangeTime; } public short getLogonCount () { return this.logonCount; } public short getBadPasswordCount () { return this.badPasswordCount; } public String getUserName () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java
* {@link PairedStatsAccumulator#snapshot} method which returns {@link PairedStats} instances, see * {@link PairedStatsTest}. * * @author Pete Gillin */ public class PairedStatsAccumulatorTest extends TestCase { private PairedStatsAccumulator emptyAccumulator; private PairedStatsAccumulator emptyAccumulatorByAddAllEmptyPairedStats;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 21:17:33 UTC 2024 - 23.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CountTest.java
*/ @GwtCompatible @ElementTypesAreNonnullByDefault public class CountTest extends TestCase { public void testGet() { assertEquals(20, new Count(20).get()); } public void testGetAndAdd() { Count holder = new Count(20); assertEquals(20, holder.get()); holder.add(1); assertEquals(21, holder.get()); } public void testAddAndGet() { Count holder = new Count(20);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 1.5K bytes - Viewed (0)