- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 696 for excluding (0.08 sec)
-
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
assertFalse(cos.done); cos.close(); } @Test public void testSingleByteWritesExceedingThreshold() throws IOException { // Writing one byte at a time, exceeding threshold ContentOutputStream cos = new ContentOutputStream(3, Curl.tmpDir); cos.write(1); cos.write(2); cos.write(3); assertTrue(cos.isInMemory());
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Wed Nov 12 14:01:04 UTC 2025 - 9.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java
} if ((!part1.contains(".")) && !part1.startsWith("0")) { majorVersion = tryParseInt(part1); if (majorVersion == null) { // qualifier is the whole version, including "-" qualifier = version; buildNumber = null; } } else { boolean fallback = false; String[] tok = part1.split("\\.");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Primitives.java
Map<Class<?>, Class<?>> backward, Class<?> key, Class<?> value) { forward.put(key, value); backward.put(value, key); } /** * Returns an immutable set of all nine primitive types (including {@code void}). Note that a * simpler way to test whether a {@code Class} instance is a member of this set is to call {@link * Class#isPrimitive}. * * @since 3.0 */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 4.8K bytes - Viewed (0) -
docs/en/docs/advanced/additional-responses.md
* A key `schema`, that has as the value the JSON Schema from the model, here's the correct place. * **FastAPI** adds a reference here to the global JSON Schemas in another place in your OpenAPI instead of including it directly. This way, other applications and clients can use those JSON Schemas directly, provide better code generation tools, etc. /// The generated responses in the OpenAPI for this *path operation* will be:
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 8.9K bytes - Viewed (0) -
tests/test_wrapped_method_forward_reference.py
""" Regression test ensuring that when a method imported from another module is decorated with something that sets the __wrapped__ attribute (functools.wraps), then the types are still processed correctly, including dereferencing of forward references. """ app = FastAPI() client = TestClient(app) app.post("/endpoint")(passthrough(forwardref_method))Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:23:14 UTC 2025 - 997 bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Dec 15 11:13:42 UTC 2025 - 15.7K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/package-info.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /** * Provides annotations for Maven plugin development, including mojo configuration, * parameter definitions, and lifecycle bindings. These annotations are used to * generate plugin descriptors and configure plugin behavior. * * @since 4.0.0 */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 22:51:39 UTC 2025 - 1.1K bytes - Viewed (0) -
tests/test_top_level_security_scheme_in_openapi.py
# Test security scheme at the top level, including OpenAPI # Ref: https://github.com/fastapi/fastapi/discussions/14263 # Ref: https://github.com/fastapi/fastapi/issues/14271 from fastapi import Depends, FastAPI from fastapi.security import HTTPBearer from fastapi.testclient import TestClient from inline_snapshot import snapshot app = FastAPI() bearer_scheme = HTTPBearer() @app.get("/", dependencies=[Depends(bearer_scheme)])
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 24 19:03:06 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationRequest.java
*/ package jcifs.internal; /** * Interface for SMB protocol negotiation request messages. * Represents the client's request to negotiate SMB protocol version and capabilities * with the server, including security requirements like message signing. * * @author mbechler */ public interface SmbNegotiationRequest { /** * Checks whether SMB message signing is enforced by the client. *
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStats.java
return LinearTransformation.vertical(xStats.mean()); } } /** * {@inheritDoc} * * <p><b>Note:</b> This tests exact equality of the calculated statistics, including the floating * point values. Two instances are guaranteed to be considered equal if one is copied from the * other using {@code second = new PairedStatsAccumulator().addAll(first).snapshot()}, if both
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0)