- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 224 for Scenarios (0.06 seconds)
-
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
} }.map { PerformanceScenario(Scenario.fromTestId(configuration.testId), it.testProject) } } } data class PerformanceTestDuration( val scenario: Scenario, val durationInMs: Int, ) { fun toCsvLine() = "${scenario.className};${scenario.scenario}" } data class PerformanceScenario( val scenario: Scenario, val testProject: String, )Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 29 01:37:22 GMT 2026 - 17.2K bytes - Click Count (0) -
internal/disk/stat_linux_s390x.go
Files: s.Files, Ffree: s.Ffree, FSType: getFSType(s.Type), } // Check for overflows. // https://github.com/minio/minio/issues/8035 // XFS can show wrong values at times error out // in such scenarios. if info.Free > info.Total { return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path) } info.Used = info.Total - info.Free
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Feb 26 19:34:50 GMT 2024 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
* </p> * <pre> * Map<K, V> syncMap = Collections.synchronizedMap(new LruHashMap<>(100)); * </pre> * <p> * Alternatively, for high-concurrency scenarios, consider implementing a custom * LRU cache using {@link java.util.concurrent.ConcurrentHashMap} with an eviction strategy. * </p> * * @author koichik * @param <K> the key type * @param <V> the value type */
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 3K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts
includeModule("org.gradle.buildtool.internal", "gradle-ide-starter") includeModule("org.gradle.buildtool.internal", "gradle-ide-starter-scenarios") } } google { content { includeGroup("com.android.databinding") includeGroupByRegex("com\\.android\\.tools(\\.[a-z.\\-]*)?") } } maven {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Sep 05 12:30:31 GMT 2025 - 1.6K bytes - Click Count (0) -
docs/en/docs/reference/dependencies.md
Here is the reference for it and its parameters. You can import it directly from `fastapi`: ```python from fastapi import Depends ``` ::: fastapi.Depends ## `Security()` For many scenarios, you can handle security (authorization, authentication, etc.) with dependencies, using `Depends()`. But when you want to also declare OAuth2 scopes, you can use `Security()` instead of `Depends()`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Apr 18 19:53:19 GMT 2024 - 671 bytes - Click Count (0) -
docs/en/docs/tutorial/encoder.md
/// note `jsonable_encoder` is actually used by **FastAPI** internally to convert data. But it is useful in many other scenarios.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 1.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
fail("ProcessDestroyer inner class should exist"); } } // Test exception handling scenarios @Test public void test_exception_handling_scenarios() throws Exception { // Test various exception scenarios without triggering component dependencies // Test with null command list try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
src/test/java/jcifs/ACETest.java
verify(ace, times(1)).getFlags(); } } @Nested @DisplayName("Real-world Usage Scenarios") class RealWorldUsageTests { @Test @DisplayName("Should handle typical file system permission scenarios") void shouldHandleFileSystemPermissions() { // Read-only file access
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
* This action handles SSO authentication flows including login, logout, and metadata * operations. It coordinates with the SsoManager to perform authentication using * configured SSO providers and handles various authentication scenarios including * successful login, authentication failures, and redirects. */ public class SsoAction extends FessLoginAction { // ===================================================================================Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
get() = PerformanceTestType.AD_HOC override val failsStage: Boolean get() = false val buildSpecs: List<FlameGraphGenerationBuildSpec> get() = scenarios.flatMap { scenario -> Os.values().flatMap { os -> val arch = if (os == Os.MACOS) Arch.AARCH64 else Arch.AMD64 if (os == Os.WINDOWS) { listOf("jprofiler")
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 3.8K bytes - Click Count (0)