- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 684 for probes (0.07 sec)
-
src/main/java/org/codelibs/fess/ingest/Ingester.java
} // web/file public ResultData process(final ResultData target, final ResponseData responseData) { return target; } // web/file public Map<String, Object> process(final Map<String, Object> target, final AccessResult<String> accessResult) { return process(target); } // datastore public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
val crossVersionTests: List<OsAwareBaseGradleBuildType> val docsTestTriggers: List<OsAwareBaseGradleBuildType> init { features { buildReportTab("Problems Report", "problems-report.html") if (stage.specificBuilds.contains(SpecificBuild.SanityCheck)) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Oct 07 09:17:14 UTC 2024 - 9.5K bytes - Viewed (0) -
CHANGELOG.md
connections. * Fix: Immediately update the connection's flow control window instead of waiting for the receiving stream to process it. This change may increase OkHttp's memory use for applications that make many concurrent HTTP calls and that can receive data faster than they can process it. Previously, OkHttp limited HTTP/2 to 16 MiB of unacknowledged data per connection. With this fix there is a limit of 16 MiB
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 18 01:31:39 UTC 2024 - 21.4K bytes - Viewed (0) -
native-image-tests/src/main/kotlin/okhttp3/GenerateClassList.kt
"okhttp3.CookiesTest", // Hanging. "okhttp3.WholeOperationTimeoutTest", ) /** * Run periodically to refresh the known set of working tests. * * TODO use filtering to allow skipping acceptable problem tests */ fun main() { val knownTestFile = File("native-image-tests/src/main/resources/testlist.txt") val testSelector = DiscoverySelectors.selectPackage("okhttp3") val testClasses =
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/WebSocket.kt
* * * **Closed:** the web socket has transmitted all of its messages and has received all messages * from the peer. * * Web sockets may fail due to HTTP upgrade problems, connectivity problems, or if either peer * chooses to short-circuit the graceful shutdown process: * * * **Canceled:** the web socket connection failed. Messages that were successfully enqueued by * either peer may not have been transmitted to the other. *
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/AbstractProfileActivatorTest.java
SimpleProblemCollector problems = new SimpleProblemCollector(); assertEquals(active, activator.isActive(new org.apache.maven.model.Profile(profile), context, problems)); assertEquals(0, problems.getErrors().size(), problems.getErrors().toString()); assertEquals(0, problems.getWarnings().size(), problems.getWarnings().toString()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
final DefaultModelBuildingResult result, DefaultModelProblemCollector problems) throws ModelBuildingException { Model inputModel = readRawModel(request, problems); if (problems.hasFatalErrors()) { throw problems.newModelBuildingException(); } problems.setRootModel(inputModel);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileSelector.java
* {@code null}. * @param problems The container used to collect problems that were encountered, must not be {@code null}. * @return The profiles that have been activated, never {@code null}. */ List<Profile> getActiveProfiles( Collection<Profile> profiles, ProfileActivationContext context, ModelProblemCollector problems); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ProblemDetectingValueSource.java
private final ModelProblemCollector problems; ProblemDetectingValueSource( ValueSource valueSource, String bannedPrefix, String newPrefix, ModelProblemCollector problems) { this.valueSource = valueSource; this.bannedPrefix = bannedPrefix; this.newPrefix = newPrefix; this.problems = problems; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ModelInterpolator.java
* @param problems The container used to collect problems that were encountered, must not be {@code null}. * @return The interpolated model, never {@code null}. * @since 4.0.0 */ Model interpolateModel(Model model, Path projectDir, ModelBuildingRequest request, ModelProblemCollector problems); /** * @since 4.0.0 */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0)