- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 405 for mergeV1 (0.1 sec)
-
internal/pubsub/pubsub.go
combined := Mask(atomic.LoadUint64(&ps.types)) combined.Merge(Mask(mask.Mask())) atomic.StoreUint64(&ps.types, uint64(combined)) go func() { <-doneCh ps.Lock() defer ps.Unlock() var remainTypes Mask for i, s := range ps.subs { if s == sub { ps.subs = append(ps.subs[:i], ps.subs[i+1:]...) } else { remainTypes.Merge(s.types) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Feb 06 16:57:30 UTC 2024 - 5.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/MergerTest.java
+ " </properties>\n" + "</project>"), true, new InputSource(null, "merge-input")); propertiesLocation = mergeInput.getLocation("properties"); assertNotNull(propertiesLocation); assertEquals(2, propertiesLocation.getLineNumber());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java
result.setLocations(locations); return result; } // -- InputLocation merge( InputLocation, InputLocation, boolean ) /** * Method merge. * * @param target * @param indices * @param source * @return InputLocation */ public static InputLocation merge( InputLocation target, InputLocation source, java.util.Collection<Integer> indices) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.5K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-expected.xml
<artifactId>default</artifactId> <version>3.0</version> <configuration> <defaults><!-- equivalent to combine.children="merge" combine.self="merge" --> <!-- merge the content of the configuration element according to element name --> <parent>child</parent> <child>child</child> <parent-only>parent</parent-only>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy
_ * classDoc.classExtensions >> [] _ * classDoc.subClasses >> [] when: def result = parse('<chapter/>', document) withCategories { renderer.merge(classDoc, result) } then: formatTree(result) == '''<chapter> <section> <title>Properties</title> <table> <title>Properties - Class</title>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 40.8K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java
* * @return the filename */ String getRemoteFilename(); /** * Merge a new metadata set into this piece of metadata. * TODO this should only be needed on the repository metadata {@link org.apache.maven.artifact.metadata.ArtifactMetadata} * * @param metadata the new metadata */ void merge(ArtifactMetadata metadata); /** * Store the metadata in the local repository.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeBasedTable.java
Iterator<C> merged = mergeSorted( transform(backingMap.values(), (Map<C, V> input) -> input.keySet().iterator()), comparator); return new AbstractIterator<C>() { @CheckForNull C lastValue; @Override @CheckForNull protected C computeNext() { while (merged.hasNext()) { C next = merged.next();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableRangeSet.java
* and will be merged, but overlapping ranges will cause an exception when {@link #build()} is * called. */ @CanIgnoreReturnValue public Builder<C> addAll(RangeSet<C> ranges) { return addAll(ranges.asRanges()); } /** * Add all of the specified ranges to this builder. Adjacent ranges are permitted and will be
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 27K bytes - Viewed (0) -
CONTRIBUTING.md
its dependencies and the rest of the system. - Rarely, If the tests fail at this stage, we cannot merge the code. - If needed, we may come to you to make some changes. At times, it may not be you, it may be us who may have hit a snag. Please be patient while we work to fix this. - Once the internal tests pass, we go ahead and merge the code internally as well as externally on GitHub.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 06:20:12 UTC 2024 - 15.9K bytes - Viewed (0) -
cmd/metacache-entries_test.go
a, b := org.shallowClone(), org.shallowClone() be := b.entries() for i := range be { // Modify b so it isn't deduplicated. be[i].metadata = []byte("something-else") } // Merge b into a a.merge(b, -1) //nolint:gocritic want := append(loadMetacacheSampleNames, loadMetacacheSampleNames...) sort.Strings(want) got := a.entries().names() if len(got) != len(want) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 31.6K bytes - Viewed (0)