- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 436 for excluded (0.1 sec)
-
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
/** * Returns an immutable sorted set containing the given elements sorted by their natural ordering. * When multiple elements are equivalent according to {@link Comparable#compareTo}, only the first * one specified is included. * * @throws NullPointerException if any element is null */ public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1, E e2) { return construct(Ordering.natural(), 2, e1, e2); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 36.9K bytes - Viewed (0) -
guava-gwt/test/com/google/common/collect/testing/Testing.gwt.xml
<module> <source path=""> <!-- Hack to keep collect from hiding collect.testing supersource: --> <exclude name="**/testing/**"/> </source> <!-- We used to set this only for packages that had manual supersource. That worked everywhere that I know of except for one place: when running the GWT util.concurrent tests under Guava. The problem is that GWT responds poorly to two .gwt.xml files in the same Java package; see
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 1.7K bytes - Viewed (0) -
guava-gwt/src/com/google/common/net/Net.gwt.xml
<module> <source path=""> <!-- Hack to keep collect from hiding collect.testing supersource: --> <exclude name="**/testing/**"/> </source> <!-- We used to set this only for packages that had manual supersource. That worked everywhere that I know of except for one place: when running the GWT util.concurrent tests under Guava. The problem is that GWT responds poorly to two .gwt.xml files in the same Java package; see
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 19 16:02:36 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java
} protected EditBody createEditBody(final PathMapping entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, op -> op.exclude(Constants.COMMON_CONVERSION_RULE)); return body; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/en/docs/tutorial/schema-extra-example.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/java/jcifs/ResourceNameFilter.java
* * @author mbechler * */ public interface ResourceNameFilter { /** * * @param parent * @param name * @return whether the given filename should be included * @throws CIFSException */ public boolean accept ( SmbResource parent, String name ) throws CIFSException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/licenses/MIT.txt
permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri May 17 19:14:22 UTC 2024 - 1.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/ReflectionTest.java
++classesInitialized; } } private static class C { static { ++classesInitialized; } } public void testInitialize() { assertEquals("This test can't be included twice in the same suite.", 0, classesInitialized); Reflection.initialize(A.class); assertEquals(1, classesInitialized); Reflection.initialize( A.class, // Already initialized (above)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 2.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java
*/ interface Boundary { /** * The bounding version. */ Version getVersion(); /** * Returns {@code true} if version is included of the range. */ boolean isInclusive(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/TestProperties.java
static final String TEST_CONFIG_FILE = "test.config.file"; static final String TEST_MUTATIONS = "test.mutations"; static final String EXCLUDE_TEST_MUTATIONS = "test.mutations.exclude"; static final Object TEST_FIFO_PIPE = "test.pipe.fifo"; static final Object TEST_TRANSACT_PIPE = "test.pipe.transact"; static final Object TEST_CALL_PIPE = "test.pipe.call";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Feb 29 16:38:58 UTC 2020 - 2.3K bytes - Viewed (0)