- Sort Score
- Result 10 results
- Languages All
Results 681 - 690 of 1,775 for nell (0.03 sec)
-
impl/maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java
this(exception, message, reference, null); } public ExceptionSummary(Throwable exception, String message, String reference, List<ExceptionSummary> children) { this.exception = exception; this.message = (message != null) ? message : ""; this.reference = (reference != null) ? reference : ""; this.children = (children != null) ? Collections.unmodifiableList(children) : Collections.emptyList();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
Iterable<String> set = newHashSet("a", null, "b"); assertTrue(FluentIterable.from(set).contains(null)); } public void testContains_nullSetNo() { Iterable<String> set = ImmutableSortedSet.of("a", "b"); assertFalse(FluentIterable.from(set).contains(null)); } public void testContains_nullIterableYes() { Iterable<String> iterable = iterable("a", null, "b");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 30.4K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
String msg = request.getHeader("Authorization"); if ( msg != null && ( msg.startsWith("NTLM ") || ( offerBasic && msg.startsWith("Basic ") ) ) ) { if ( this.loadBalance ) { dc = new UniAddress(getTransportContext().getNameServiceClient().getNbtByName(this.domainController, 0x1C, null)); } else {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.6K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/RecordingEventListener.kt
* * @param eventClass a class to assert that the returned event is an instance of, or null to * take any event class. * @param elapsedMs the time in milliseconds elapsed since the immediately-preceding event, or * -1L to take any duration. */ fun takeEvent( eventClass: Class<out CallEvent>? = null, elapsedMs: Long = -1L, ): CallEvent { val result = eventSequence.remove()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null; })).status(ApiResult.Status.OK).result()); } // PUT /api/admin/scheduler/setting @Execute public JsonResponse<ApiResult> put$setting(final CreateBody body) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
logger.debug("Adding {}", dataMap); } // required check final Object urlObj = dataMap.get(fessConfig.getIndexFieldUrl()); if (urlObj == null) { throw new DataStoreException("url is null. dataMap=" + dataMap); } final IndexingHelper indexingHelper = ComponentUtil.getIndexingHelper();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.9K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java
Object unused = new Object() { @SuppressWarnings({"removal", "Finalize"}) // b/260137033 @Override protected void finalize() { future.set(null); } }; unused = null; // Hint to the JIT that unused is unreachable GcFinalization.awaitDone(future); assertTrue(future.isDone()); assertFalse(future.isCancelled()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 7.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/WrappingScheduledExecutorServiceTest.java
lastDelay = delay; lastUnit = unit; return null; } @Override public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { assertThat(callable).isInstanceOf(WrappedCallable.class); lastMethodCalled = "scheduleCallable"; lastDelay = delay; lastUnit = unit; return null; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0) -
dbflute_fess/dfprop/additionalForeignKeyMap.dfprop
# ; localColumnName = MEMBER_ID ; foreignColumnName = MEMBER_ID # ; fixedCondition = # $$foreignAlias$$.VALID_BEGIN_DATE <= /*targetDate(Date)*/null # and $$foreignAlias$$.VALID_END_DATE >= /*targetDate(Date)*/null # ; fixedSuffix = AsValid # } # } # # *The line that starts with '#' means comment-out. # map:{ #; FK_MEMBER_MEMBER_STATUS_CODE = map:{
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.7K bytes - Viewed (0)