- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,445 for dpath (0.26 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterRequest.java
return new XmlWriterRequestBuilder<>(); } class XmlWriterRequestBuilder<T> { Path path; OutputStream outputStream; Writer writer; T content; Function<Object, String> inputLocationFormatter; public XmlWriterRequestBuilder<T> path(Path path) { this.path = path; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Aug 10 22:21:50 UTC 2024 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ResourceNotFoundRuntimeException.java
/** * The path to the resource. */ private final String path; /** * Creates a {@link ResourceNotFoundRuntimeException}. * * @param path the resource path */ public ResourceNotFoundRuntimeException(final String path) { super("ECL0055", asArray(path)); this.path = path; } /** * Returns the path. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComDeleteDirectory.java
/** * Creates a new SMB1 delete directory request. * * @param config the CIFS configuration * @param path the path of the directory to delete */ public SmbComDeleteDirectory(final Configuration config, final String path) { super(config, SMB_COM_DELETE_DIRECTORY, path); } @Override protected int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
docs/en/docs/tutorial/header-params.md
You can define Header parameters the same way you define `Query`, `Path` and `Cookie` parameters. ## Import `Header` { #import-header } First import `Header`: {* ../../docs_src/header_params/tutorial001_an_py310.py hl[3] *} ## Declare `Header` parameters { #declare-header-parameters } Then declare the header parameters using the same structure as with `Path`, `Query` and `Cookie`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
// Should match first included path assertTrue(pattern.match("/test/path")); // Should match second included path assertTrue(pattern.match("/another/path")); // Should not match first excluded path assertFalse(pattern.match("/exclude/path")); // Should not match second excluded path assertFalse(pattern.match("/deny/path")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
// Test with no file path mappings assertEquals("test/path", emptyGenerator.expandPath("test/path")); assertNull(emptyGenerator.expandPath(null)); // Test with file path mappings emptyGenerator.filePathMap.put("${path}/test", "/usr/bin/test"); assertEquals("/usr/bin/test", emptyGenerator.expandPath("${path}/test"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.3K bytes - Viewed (0) -
docs/en/docs/how-to/general.md
## Documentation Deprecate a *Path Operation* - OpenAPI { #documentation-deprecate-a-path-operation-openapi } To deprecate a *path operation*, and show it in the docs UI, read the docs for [Tutorial - Path Operation Configurations - Deprecation](../tutorial/path-operation-configuration.md#deprecate-a-path-operation){.internal-link target=_blank}. ## Convert any Data to JSON-compatible { #convert-any-data-to-json-compatible }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/util/PathValidatorTest.java
// Should allow whitelisted path String allowed = validator.validatePath("\\share\\allowed\\file.txt"); assertEquals("\\share\\allowed\\file.txt", allowed); // Should block non-whitelisted path try { validator.validatePath("\\share\\other\\file.txt"); fail("Should block non-whitelisted path"); } catch (SmbException e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (0) -
docs/es/docs/advanced/custom-response.md
Nota que aquí como estamos usando `open()` estándar que no admite `async` y `await`, declaramos el path operation con `def` normal. /// ### `FileResponse` Transmite un archivo asincrónicamente como response. Toma un conjunto diferente de argumentos para crear un instance que los otros tipos de response: * `path` - La path del archivo para el archivo a transmitir.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
String link; if (path == null || path.length() <= 1) { /* * Lookup the domain based DFS root target referral. Note the * path is just "\" and not "\example.com\root". */ link = "\\"; } else if (path.charAt(path.length() - 1) == '\\') { // strip trailing slash link = path.substring(0, path.length() - 1); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0)