- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 202 for child1 (0.03 sec)
-
impl/maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml
--> <project> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven.its.mng3899</groupId> <artifactId>parent</artifactId> <version>0.1</version> </parent> <artifactId>child</artifactId> <name>Maven Integration Test :: MNG-3899</name> <description> Test that build extensions are properly merged during inheritance. </description> <build>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/pom.xml
--> <project> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.maven.its.mng3906</groupId> <artifactId>parent</artifactId> <version>0.1</version> </parent> <artifactId>child</artifactId> <name>Maven Integration Test :: MNG-3906</name> <description> Test that project-level plugin dependencies are properly merged during inheritance. </description> <build> <plugins>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/webapp/css/bootstrap.min.css
radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(var(--bs-border-width) * -1)}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;...Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 227.5K bytes - Viewed (0) -
association.go
} } association.Error = association.DB.Session(&Session{ NewDB: true, }).Model(child.Interface()).Create(mapv.Interface()).Error case schema.Many2Many: association.Error = association.DB.Session(&Session{ NewDB: true, }).Model(child.Interface()).Create(mapv.Interface()).Error for _, key := range mapv.MapKeys() { k := strings.ToLower(key.String())
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Sun Oct 26 12:09:12 UTC 2025 - 23.6K bytes - Viewed (0) -
impl/maven-core/src/test/resources-project-builder/artifact-id-inheritance/pom.xml
<artifactId>parent</artifactId> <version>0.1</version> <packaging>pom</packaging> <!-- NOTE: This extends the test to check an edge case of URL adjustment which must not error out during inheritance if the child misses the artifactId (as to be reported by validation). --> <url>https://maven.apache.org/</url>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/empty-urls-parent.xml
<modelVersion>4.0.0</modelVersion> <groupId>inheritance</groupId> <artifactId>empty</artifactId> <version>1</version> <modules> <module>child</module> </modules> <url></url> <scm> <connection> </connection> <developerConnection> </developerConnection> <url></url> </scm> <distributionManagement> <site> <url></url>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
} // Invalidate all child directories invalidateChildren(path); } private void invalidateChildren(String parentPath) { Set<String> children = parentChildMap.get(parentPath); if (children != null) { for (String child : children) { DirectoryCacheEntry entry = leaseManager.getCacheEntry(child); if (entry != null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/empty-urls-expected.xml
<modelVersion>4.0.0</modelVersion> <parent> <groupId>inheritance</groupId> <artifactId>empty</artifactId> <version>1</version> </parent> <groupId>inheritance</groupId> <artifactId>child</artifactId> <version>1</version> <url></url> <scm> <connection></connection> <developerConnection></developerConnection> <url></url> </scm> <distributionManagement> <site>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
org.codelibs.jcifs.smb.impl.SID.SID_FLAG_RESOLVE_SIDS); for (final SID child : children) { if (!sidSet.contains(child)) { processAllowedSIDs(file, child, sidSet); } } } catch (final CIFSException e) { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.4K bytes - Viewed (3) -
src/test/java/jcifs/smb/ShareEnumIteratorTest.java
SmbResource r1 = it.next(); assertNotNull(r1); assertEquals("foo/", r1.getName(), "First child name should match with trailing slash"); assertTrue(it.hasNext(), "Expected second element available"); SmbResource r2 = it.next(); assertNotNull(r2); assertEquals("bar/", r2.getName(), "Second child name should match with trailing slash"); // End of iteration behavior
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0)