- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for p1 (0.01 sec)
-
src/cmd/api/testdata/src/pkg/p1/p1.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package p1 import ( ptwo "p2" ) const ( ConstChase2 = constChase // forward declaration to unexported ident constChase = AIsLowerA // forward declaration to exported ident // Deprecated: use B. A = 1 a = 11 A64 int64 = 1
Registered: 2025-05-27 11:13 - Last Modified: 2022-12-02 16:29 - 3.3K bytes - Viewed (0) -
src/cmd/api/testdata/src/pkg/p1/golden.txt
pkg p1, type URL struct pkg p1, type URL //deprecated pkg p1, var Byte uint8 pkg p1, var ByteConv []uint8 pkg p1, var ByteFunc func(uint8) int32 pkg p1, var ChecksumError error pkg p1, var SIPtr *SI pkg p1, var SIPtr2 *SI pkg p1, var SIVal SI pkg p1, var StrConv string pkg p1, var V string pkg p1, var V1 uint64 pkg p1, var V2 p2.Twoer pkg p1, var VError Error pkg p1, var VError //deprecated pkg p1, var X I
Registered: 2025-05-27 11:13 - Last Modified: 2022-12-02 16:29 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Preconditions.java
* * @since 20.0 (varargs overload since 2.0) */ public static void checkArgument(boolean expression, String errorMessageTemplate, char p1) { if (!expression) { throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1)); } } /** * Ensures the truth of an expression involving one or more parameters to the calling method. *
Registered: 2025-05-30 12:43 - Last Modified: 2025-03-17 20:26 - 52.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Verify.java
* * @since 23.1 (varargs overload since 17.0) */ public static void verify(boolean expression, String errorMessageTemplate, char p1) { if (!expression) { throw new VerifyException(lenientFormat(errorMessageTemplate, p1)); } } /** * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a * custom message otherwise. *
Registered: 2025-05-30 12:43 - Last Modified: 2025-03-17 20:26 - 18.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/PredicatesTest.java
Predicate<@Nullable Integer> p1 = Predicates.isNull(); Predicate<@Nullable Integer> p2 = isOdd(); // Make sure that hash codes are not computed per-instance. assertEqualHashCode(Predicates.not(p1), Predicates.not(p1)); assertEqualHashCode(Predicates.and(p1, p2), Predicates.and(p1, p2)); assertEqualHashCode(Predicates.or(p1, p2), Predicates.or(p1, p2));
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 32.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiItemTest.java
assertTrue(kuromojiItem1.equals(new KuromojiItem(2, "t1", "s1", "r1", "p1"))); assertFalse(kuromojiItem1.equals(new KuromojiItem(1, "T1", "s1", "r1", "p1"))); assertFalse(kuromojiItem1.equals(new KuromojiItem(1, "t1", "S1", "r1", "p1"))); assertFalse(kuromojiItem1.equals(new KuromojiItem(1, "t1", "s1", "R1", "p1")));
Registered: 2025-05-26 08:04 - Last Modified: 2025-03-15 06:53 - 3K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
Properties prop1 = new Properties(); prop1.setProperty("jcifs.smb.client.minVersion", "SMB302"); PropertyConfiguration p1 = new PropertyConfiguration(prop1); assertEquals(DialectVersion.SMB302, p1.getMinimumVersion()); assertEquals(DialectVersion.SMB302, p1.getMaximumVersion()); Properties prop2 = new Properties(); prop2.setProperty("jcifs.smb.client.maxVersion", "SMB302");
Registered: 2025-05-25 00:10 - Last Modified: 2023-03-13 12:00 - 9.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
Predicate<@Nullable Integer> p1 = Predicates.isNull(); Predicate<@Nullable Integer> p2 = isOdd(); // Make sure that hash codes are not computed per-instance. assertEqualHashCode(Predicates.not(p1), Predicates.not(p1)); assertEqualHashCode(Predicates.and(p1, p2), Predicates.and(p1, p2)); assertEqualHashCode(Predicates.or(p1, p2), Predicates.or(p1, p2));
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 32.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
int p1, p2, l1, l2; // if unsure return this method returns true p1 = path1.lastIndexOf('/'); p2 = path2.lastIndexOf('/'); l1 = path1.length() - p1; l2 = path2.length() - p2; // anything with dots voids comparison if ( l1 > 1 && path1.charAt(p1 + 1) == '.' ) return true;
Registered: 2025-05-25 00:10 - Last Modified: 2025-01-26 07:34 - 24.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/FunctionsTest.java
Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f); Predicate<Float> p2 = Predicates.compose(h, Functions.compose(g, f)); // Might be nice (eventually) to have: // assertEquals(p1, p2); // But for now, settle for this: assertEquals(p1.hashCode(), p2.hashCode()); assertEquals(p1.apply(1.0f), p2.apply(1.0f));
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 17:27 - 15.9K bytes - Viewed (0)