- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 70 for Children (0.05 sec)
-
cmd/data-scanner.go
var compact bool if flat.Objects < dataScannerCompactLeastObject { compact = true } else { // Compact if we only have objects as children... compact = true for k := range into.Children { if v, ok := f.newCache.Cache[k]; ok { if len(v.Children) > 0 || v.Objects > 1 { compact = false break } } } } if compact {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 45.5K bytes - Viewed (0) -
android/guava-testlib/pom.xml
<plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgs combine.children="append" combine.self="append"> <arg>-XDignore.symbol.file</arg> </compilerArgs> </configuration> </execution> <execution> <id>compile-java9</id>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
guava-testlib/pom.xml
<plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgs combine.children="append" combine.self="append"> <arg>-XDignore.symbol.file</arg> </compilerArgs> </configuration> </execution> <execution> <id>compile-java9</id>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Mar 19 17:26:38 UTC 2025 - 4.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/After.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 29 05:48:54 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
*/ int FLAGS_CONTAINER_INHERIT = 0x02; /** * Inheritance flag: inheritance stops after one level */ int FLAGS_NO_PROPAGATE = 0x04; /** * Inheritance flag: ACE applies only to children, not to the object itself */ int FLAGS_INHERIT_ONLY = 0x08; /** * Inheritance flag: ACE was inherited from parent */ int FLAGS_INHERITED = 0x10; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
} private static final TreeTraverser<BinaryNode> VIEWER = new TreeTraverser<BinaryNode>() { @Override public Iterable<BinaryNode> children(BinaryNode root) { return Optional.presentInstances(ImmutableList.of(root.left, root.right)); } }; enum Traversal { PRE_ORDER { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.9K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
} private static final TreeTraverser<BinaryNode> VIEWER = new TreeTraverser<BinaryNode>() { @Override public Iterable<BinaryNode> children(BinaryNode root) { return Optional.presentInstances(ImmutableList.of(root.left, root.right)); } }; enum Traversal { PRE_ORDER { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/webapp/js/bootstrap.min.js
")[1]}`),e=s&&"#"!==s?s.trim():null}return r(e)},K={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const s=[];let i=t.parentNode.closest(e);for(;i;)s.push(i),i=i.parentNode.closest(e);return s},prev(t,e){let s=t.previousElementSibling;for(;s;){if(s.matches(e))return[s];s=s.previousElement...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 58.9K bytes - Viewed (0) -
src/main/webapp/js/admin/adminlte.min.js.map
options\n this._element = element\n }\n\n // Public\n\n init() {\n $(SELECTOR_DATA_TOGGLE).each((_, $header) => {\n const $type = $($header).attr(SELECTOR_ARIA_ATTR)\n const $body = $($header).next(SELECTOR_EXPANDABLE_BODY).children().first().children()\n if ($type === 'true') {\n $body.show()\n } else if ($type === 'false') {\n $body.hide()\n $body.parent().parent().addClass('d-none')\n }\n })\n }\n\n toggleRow() {\n let $element = this._element\n\n...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 132.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
} // Helper method to delete directory recursively private void deleteDirectory(File dir) { if (dir.isDirectory()) { File[] children = dir.listFiles(); if (children != null) { for (File child : children) { deleteDirectory(child); } } } dir.delete(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0)