- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 429 for Greeting (2.07 sec)
-
docs/en/docs/tutorial/response-model.md
You can also use `response_model=None` to disable creating a response model for that *path operation*, you might need to do it if you are adding type annotations for things that are not valid Pydantic fields, you will see an example of that in one of the sections below.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
/** * Builder class for constructing SearchResult instances using the builder pattern. * * This builder provides a fluent interface for setting the various properties * of a SearchResult before creating the final immutable instance. */ static class SearchResultBuilder { /** The total number of records that match the search criteria. */ private long allRecordCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
import org.apache.maven.api.cache.CacheMetadata; import org.apache.maven.api.cache.CacheRetention; import static java.util.Objects.requireNonNull; /** * Factory methods for creating different types of sources. * <p> * This class provides specialized source implementations for different use cases: * <ul> * <li>Path sources - simple access to file content</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
/** * The timestamp when this web configuration was created. */ @ValidateTypeFailure public Long createdTime; /** * Initializes the form with default values for creating a new web configuration. */ public void initialize() { crudMode = CrudMode.CREATE; final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/jcifs/DialectVersionTest.java
assertTrue(DialectVersion.SMB302.ordinal() < DialectVersion.SMB311.ordinal()); } @Test @DisplayName("Should handle dialect version sets") void testDialectVersionSets() { // Test creating sets of dialect versions java.util.Set<DialectVersion> smb2Versions = java.util.EnumSet.of(DialectVersion.SMB202, DialectVersion.SMB210, DialectVersion.SMB300, DialectVersion.SMB302, DialectVersion.SMB311);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.1K bytes - Viewed (0) -
CONTRIBUTING.md
+ [General GitHub documentation](https://help.github.com/) + [GitHub pull request documentation](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) + [Apache Maven X Account](https://x.com/ASFMavenProject) + [Apache Maven Bluesky Account](https://bsky.app/profile/maven.apache.org)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 09:55:33 UTC 2025 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
sha1ChecksumObserver = addChecksumObserver(wagon, "SHA-1"); // reset the retry flag. retry = false; // This should take care of creating destination directory now on if (destination.exists() && !force) { try { downloaded = wagon.getIfNewer(remotePath, temp, destination.lastModified());
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 29.9K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// Given Properties props = new Properties(); props.setProperty("jcifs.smb.client.connTimeout", "invalid"); props.setProperty("jcifs.smb.client.useUnicode", "maybe"); // When creating configuration with invalid number PropertyConfiguration testConfig = new PropertyConfiguration(props); // Should use default values for invalid properties assertTrue(testConfig.getConnTimeout() > 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java
import java.util.Collection; import java.util.Objects; import org.apache.maven.api.Service; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nonnull; /** * Service for creating {@link PathMatcher} objects that can be used to filter files * based on include/exclude patterns. This service provides a clean API for plugins * to create path matchers without directly depending on implementation classes. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 21 19:37:56 UTC 2025 - 7.5K bytes - Viewed (0) -
docs/distributed/CONFIG.md
### TODO In subsequent releases we are planning to extend this to provide things like - Reload() of MinIO server arguments without fully restarting the process. - Expanding 1 node at a time by automating the process of creating a new pool and decommissioning to provide a functionality that smaller deployments care about.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Jun 25 02:30:18 UTC 2024 - 4.2K bytes - Viewed (0)