- Sort Score
- Result 10 results
- Languages All
Results 1651 - 1660 of 3,893 for atrule (0.05 sec)
-
src/test/java/org/codelibs/core/beans/impl/ConstructorDescTest.java
assertThat(ctor.getConstructor(), is((Constructor) MyBean.class.getConstructor())); assertThat(ctor.getParameterTypes().length, is(0)); assertThat(ctor.isPublic(), is(true)); final MyBean myBean = ctor.newInstance(); assertThat(myBean, is(notNullValue())); assertThat(myBean.s, is(nullValue())); } /** * @throws Exception */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/VersionRange.java
@Experimental public interface VersionRange { /** * Determines whether the specified version is contained within this range. * * @param version the version to test, must not be {@code null} * @return {@code true} if this range contains the specified version, {@code false} otherwise */ boolean contains(@Nonnull Version version); /** * Returns the upper boundary of this range, or {@code null} if none. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java
return doGet(userProperties, Constants.MAVEN_CONSUMER_POM, true); } /** * Check if the consumer POM feature is active. */ public static boolean consumerPom(@Nullable Map<String, String> userProperties) { return doGet(userProperties, Constants.MAVEN_CONSUMER_POM, true); } /** * Check if the consumer POM feature is active. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Sep 11 16:31:06 UTC 2024 - 2.5K bytes - Viewed (0) -
api/maven-api-toolchain/pom.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Oct 19 18:11:20 UTC 2024 - 2.6K bytes - Viewed (0) -
tests/test_tutorial/test_extra_data_types/test_tutorial001.py
"summary": "Read Items", "operationId": "read_items_items__item_id__put", "parameters": [ { "required": True, "schema": { "title": "Item Id", "type": "string", "format": "uuid", },
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Apr 19 00:11:40 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 31 05:47:05 UTC 2020 - 7.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CartesianList.java
int axisIndex = getAxisIndexForProductIndex(index, axis); return axes.get(axis).get(axisIndex); } @Override boolean isPartialView() { return true; } // redeclare to help optimizers with b/310253115 @SuppressWarnings("RedundantOverride") @J2ktIncompatible // serialization @Override @GwtIncompatible // serialization
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/util/Strings.java
private static final Charset ASCII_ENCODING = Charset.forName("US-ASCII"); private static final boolean MASK_SECRET_VALUE = System.getProperty("jcifs.maskSecretValue", "true") == "true"; private static final String SECRET_PATTERN = "^(smb.*:).*(@.*)$"; private static final String SECRET_MASK_REPLACE = "$1******$2"; /** * */ private Strings () {} /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 4.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/ListenableFutureTaskTest.java
assertTrue(listenerLatch.await(5, SECONDS)); assertTrue(task.isDone()); assertFalse(task.isCancelled()); } public void testListenerCalledOnException() throws Exception { throwException = true; // Start up the task and unblock the latch to finish the task. exec.execute(task); runLatch.await(); taskLatch.countDown();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java
* PluginParameterExpressionEvaluator</a>. * @return the default value */ @Nonnull String defaultValue() default ""; /** * is the parameter required? * @return <code>true</code> if the Mojo should fail when the parameter cannot be injected */ boolean required() default false; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Feb 05 09:45:47 UTC 2024 - 3.8K bytes - Viewed (0)