- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for Recursive (0.04 sec)
-
src/main/java/jcifs/smb/SmbWatchHandleImpl.java
private final int filter; private final boolean recursive; /** * @param fh * @param filter * @param recursive * */ public SmbWatchHandleImpl(final SmbFileHandleImpl fh, final int filter, final boolean recursive) { this.handle = fh; this.filter = filter; this.recursive = recursive; } /** * {@inheritDoc} *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
tests/test_validate_response_recursive/test_validate_response_recursive.py
from .app import app def test_recursive(): client = TestClient(app) response = client.get("/items/recursive") assert response.status_code == 200, response.text assert response.json() == { "sub_items": [{"name": "subitem", "sub_items": []}], "name": "item", } response = client.get("/items/recursive-submodel") assert response.status_code == 200, response.text assert response.json() == {
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Jun 17 10:24:10 UTC 2025 - 836 bytes - Viewed (0) -
android/guava/src/com/google/common/io/RecursiveDeleteOption.java
/** * Options for use with recursive delete methods ({@link MoreFiles#deleteRecursively} and {@link * MoreFiles#deleteDirectoryContents}). * * @since 33.4.0 (but since 21.0 in the JRE flavor) * @author Colin Decker */ @J2ktIncompatible @GwtIncompatible @J2ObjCIncompatible // java.nio.file public enum RecursiveDeleteOption { /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2K bytes - Viewed (0) -
tests/test_validate_response_recursive/app.py
RecursiveItem.model_rebuild() RecursiveSubitemInSubmodel.model_rebuild() RecursiveItemViaSubmodel.model_rebuild() @app.get("/items/recursive", response_model=RecursiveItem) def get_recursive(): return {"name": "item", "sub_items": [{"name": "subitem", "sub_items": []}]} @app.get("/items/recursive-submodel", response_model=RecursiveItemViaSubmodel) def get_recursive_submodel(): return { "name": "item",
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 1.1K bytes - Viewed (0) -
.github/OWNERS
# See the OWNERS docs at https://go.k8s.io/owners options: # make root approval non-recursive no_parent_owners: true reviewers: - alisondy - cblecker - guineveresaenger - mrbobbytables - nikhita - parispittman - palnabarun - kaslin - MadhavJivrajani - mfahlandt - Priyankasaggu11929 approvers: - sig-contributor-experience-approvers - parispittman emeritus_approvers: - castrojo
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Fri Feb 14 19:23:30 UTC 2025 - 464 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
return of(active, optional, true); } static ActivationSettings of(final boolean active, final boolean optional, final boolean recursive) { return new ActivationSettings(active, optional, recursive); } static ActivationSettings activated() { return new ActivationSettings(true, false, true); } static ActivationSettings activatedOpt() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 2K bytes - Viewed (0) -
LICENSES/OWNERS
# See the OWNERS docs at https://go.k8s.io/owners options: # make root approval non-recursive no_parent_owners: true approvers:
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Mon Oct 10 12:26:53 UTC 2022 - 151 bytes - Viewed (0) -
CHANGELOG/OWNERS
# See the OWNERS docs at https://go.k8s.io/owners options: # make root approval non-recursive no_parent_owners: true approvers: - release-engineering-approvers - release-managers - release-team-subproject-leads - satyampsoni # 1.32 Release Notes Lead reviewers: - release-managers - release-team-subproject-leads - satyampsoni # 1.32 Release Notes Lead labels: - sig/release
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 12 18:04:32 UTC 2024 - 417 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java
/** * Builds the projects for the specified POM files and optionally their children. * * @param pomFiles The POM files to build, must not be {@code null}. * @param recursive {@code true} to recursively build submodules referenced by the POM files, {@code false} to * build only the specified POM files.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 5.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
@Override public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) { Key key = new Key(project, transitive, false); // Do not use computeIfAbsent here, as the computation is recursive // and this is not supported by computeIfAbsent. List<MavenProject> list = cache.get(key); if (list == null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 19 16:34:39 UTC 2025 - 6.4K bytes - Viewed (0)