- Sort Score
- Result 10 results
- Languages All
Results 1881 - 1890 of 2,652 for throwIt (0.07 sec)
-
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
String msg = "The value should not be null: variableName=null value=" + value; throw new IllegalArgumentException(msg); } if (value == null) { String msg = "The value should not be null: variableName=" + variableName; throw new IllegalArgumentException(msg); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
fun createPerformanceTestsFor(model: CIBuildModel, stage: Stage, performanceTestCoverage: PerformanceTestCoverage, bucketIndex: Int): PerformanceTest fun getName(testCoverage: TestCoverage): String = throw UnsupportedOperationException() } data class TestProjectDuration(val testProject: String, val scenarioDurations: List<PerformanceTestDuration>) { val totalTime: Int = scenarioDurations.sumOf { it.durationInMs }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Feb 19 11:22:56 UTC 2024 - 15.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java
resetMap(createArrayWithNullValue()); } /** * Equivalent to {@link #expectMissingKeys(Object[]) expectMissingKeys} {@code (null)} except that * the call to {@code contains(null)} is permitted to throw a {@code NullPointerException}. * * @param message message to use upon assertion failure */ protected void expectNullKeyMissingWhenNullKeysUnsupported(String message) { try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsSqlClause.java
@Override public void fetchFirst(int fetchSize) { _fetchScopeEffective = true; if (fetchSize < 0) { String msg = "Argument[fetchSize] should be plus: " + fetchSize; throw new IllegalArgumentException(msg); } _fetchStartIndex = 0; _fetchSize = fetchSize; _fetchPageNumber = 1; doClearFetchPageClause(); doFetchFirst(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsSqlClause.java
@Override public void fetchFirst(int fetchSize) { _fetchScopeEffective = true; if (fetchSize < 0) { String msg = "Argument[fetchSize] should be plus: " + fetchSize; throw new IllegalArgumentException(msg); } _fetchStartIndex = 0; _fetchSize = fetchSize; _fetchPageNumber = 1; doClearFetchPageClause(); doFetchFirst(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsSqlClause.java
@Override public void fetchFirst(int fetchSize) { _fetchScopeEffective = true; if (fetchSize < 0) { String msg = "Argument[fetchSize] should be plus: " + fetchSize; throw new IllegalArgumentException(msg); } _fetchStartIndex = 0; _fetchSize = fetchSize; _fetchPageNumber = 1; doClearFetchPageClause(); doFetchFirst(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/platform/Jdk9PlatformTest.kt
platform.assumeJdk9() val applicationProtocolUnsupported = object : DelegatingSSLSocket(null) { override fun getApplicationProtocol(): String { throw UnsupportedOperationException("Mock exception") } } assertThat(Jdk9Platform().getSelectedProtocol(applicationProtocolUnsupported)).isNull() }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/Platform.java
ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes.toByteArray())); return (T) requireNonNull(in.readObject()); } catch (IOException | ClassNotFoundException e) { throw new RuntimeException(e); } } private Platform() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 23 12:13:11 UTC 2023 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/net/JarURLConnectionUtil.java
public static JarFile getJarFile(final JarURLConnection conn) { assertArgumentNotNull("conn", conn); try { return conn.getJarFile(); } catch (final IOException e) { throw new IORuntimeException(e); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java
rootLocator, lifecycleBindingsInjector); } @Override public ProjectBuildingResult build(File pomFile, ProjectBuildingRequest configuration) throws ProjectBuildingException { ProjectBuildingResult result = super.build(pomFile, configuration); result.getProject().setRemoteArtifactRepositories(Collections.emptyList()); return result; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0)