Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for coalescesUp (0.17 sec)

  1. src/runtime/mranges.go

    	// findSucc gives us our insertion index.
    	i := a.findSucc(r.base.addr())
    	coalescesDown := i > 0 && a.ranges[i-1].limit.equal(r.base)
    	coalescesUp := i < len(a.ranges) && r.limit.equal(a.ranges[i].base)
    	if coalescesUp && coalescesDown {
    		// We have neighbors and they both border us.
    		// Merge a.ranges[i-1], r, and a.ranges[i] together into a.ranges[i-1].
    		a.ranges[i-1].limit = a.ranges[i].limit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

        private static int minimumExpectedFileSystemEvents(int numberOfChangedFiles, int numberOfChangesPerFile) {
            def currentOs = OperatingSystem.current()
            if (currentOs.macOsX) {
                // macOS coalesces the changes if the are in short succession
                return numberOfChangedFiles * numberOfChangesPerFile * LOST_EVENTS_RATIO_MAC_OS
            } else if (currentOs.linux) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

      <artifactId>coreit</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-3839</name>
      <description>
        Test that POM parsing properly coalesces text data.
      </description>
    
      <properties>
        <!--
        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

        assertEquals(
            ImmutableMap.of(Range.closedOpen(0, 1), 1, Range.closedOpen(1, 2), 1),
            rangeMap.asMapOfRanges());
    
        rangeMap.putCoalescing(Range.closedOpen(1, 1), 1); // empty range coalesces connected ranges
        assertEquals(ImmutableMap.of(Range.closedOpen(0, 2), 1), rangeMap.asMapOfRanges());
      }
    
      public void testPutCoalescingSubmapEmpty() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    	// input parameters.
    	for j, n := range lv.vars {
    		if n.Class != ir.PPARAM && lv.stackMaps[0].Get(int32(j)) {
    			lv.f.Fatalf("%v %L recorded as live on entry", lv.fn.Nname, n)
    		}
    	}
    }
    
    // Compact coalesces identical bitmaps from lv.livevars into the sets
    // lv.stackMapSet.
    //
    // Compact clears lv.livevars.
    //
    // There are actually two lists of bitmaps, one list for the local variables and one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	if c.err == nil {
    		c.p.addConnLocked(addr, c.res)
    	}
    	c.p.mu.Unlock()
    
    	close(c.done)
    }
    
    // addConnIfNeeded makes a NewClientConn out of c if a connection for key doesn't
    // already exist. It coalesces concurrent calls with the same key.
    // This is used by the http1 Transport code when it creates a new connection. Because
    // the http1 Transport doesn't de-dup TCP dials to outbound hosts (because it doesn't know
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top