- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for flattened (0.1 sec)
-
cmd/data-usage-cache.go
e := d.Cache[id] if len(e.Children) > 0 { e = d.flatten(e) } m[id] = e } return m } // flatten all children of the root into the root element and return it. func (d *dataUsageCache) flatten(root dataUsageEntry) dataUsageEntry { for id := range root.Children { e := d.Cache[id] if len(e.Children) > 0 { e = d.flatten(e) } root.merge(e) } root.Children = nil
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 34.7K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberRegistry.java
identifiers.put(ident, method); } } } } return ImmutableList.copyOf(identifiers.values()); } /** Global cache of classes to their flattened hierarchy of supertypes. */ private static final LoadingCache<Class<?>, ImmutableSet<Class<?>>> flattenHierarchyCache = CacheBuilder.newBuilder() .weakKeys() .build(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:16:45 UTC 2024 - 10.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
/** * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}. * * @param node node for which to get a flattened list * @param scope build path scope (main compile, test compile, etc.) of desired nodes * @return flattened list of node with the given build path scope
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
cmd/data-usage_test.go
path string isNil bool size, objs int flatten bool oSizes sizeHistogram }{ { path: "/", size: 363515, flatten: true, objs: 14, oSizes: sizeHistogram{0: 7, 1: 5, 2: 2}, }, { path: "/dir1", size: 342210, objs: 7, flatten: false, oSizes: sizeHistogram{0: 2, 1: 3, 2: 2}, }, {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 14.7K bytes - Viewed (0) -
Makefile.core.mk
sed "1s|^|$${warning}\n\n|" $$profile > manifests/charts/$$chart/files/profile-$$(basename $$profile) ; \ done; \ [[ "$$chart" == "ztunnel" ]] && flatten="true" || flatten="false" ; \ cat manifests/zzz_profile.yaml | \ sed "s/FLATTEN_GLOBALS_REPLACEMENT/$${flatten}/g" \ > manifests/charts/$$chart/templates/zzz_profile.yaml ; \ done #-----------------------------------------------------------------------------
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
cmd/erasure.go
// updates-collector goroutine still // holds a reference to this. wg.Wait() continue } wg.Wait() // Flatten for upstream, but save full state. var root dataUsageEntry if r := cache.root(); r != nil { root = cache.flatten(*r) } select { case <-ctx.Done(): return case bucketResults <- dataUsageEntryInfo{ Name: cache.Info.Name,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 16.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
// TODO: This doesn't allow adoc files to be generated? task.from(extension.getUserManual().getRoot(), sub -> { sub.include("**/*.adoc"); // Flatten adocs into a single directory sub.eachFile(fcd -> fcd.setRelativePath(RelativePath.parse(true, fcd.getName()))); });
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 01 05:46:51 UTC 2024 - 17.7K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
val subprojectRoots = File("../platforms").listFiles(File::isDirectory).plus(File("../subprojects")) val subProjectFolders = subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten().filter { dir -> // filter out the directories that have only a `build` subdirectory - this usually happens after branch switching dir.listFiles { _: File, name: String -> name != "build" }!!.isNotEmpty()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
} fun assertHasErrors(vararg errors: List<String>) { assertHasErrors(*errors.toList().flatten().toTypedArray()) } fun assertHasErrors(vararg errorWithDetail: Pair<String, List<String>>) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 16.4K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<type>String</type> <description>pathScope used to flatten dependencies</description> </field> <field> <name>requestType</name> <required>false</required> <version>2.0.0+</version> <type>String</type> <description>either {@code collect}, {@code flatten}, or {@code resolve}</description> </field> </fields> </class>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Aug 16 14:16:22 UTC 2024 - 24.9K bytes - Viewed (0)