Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for interleaved (0.17 sec)

  1. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

      /**
       * Each instance of MinMaxPriorityQueue encapsulates two instances of Heap: a min-heap and a
       * max-heap. Conceptually, these might each have their own array for storage, but for efficiency's
       * sake they are stored interleaved on alternate heap levels in the same array (MMPQ.queue).
       */
      @WeakOuter
      class Heap {
        final Ordering<E> ordering;
    
        @SuppressWarnings("nullness:initialization.field.uninitialized")
        @Weak
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

            GroupedOutputFixture groupedOutput = new GroupedOutputFixture(LogContent.of(consoleOutput))
    
            then:
            groupedOutput.task(':log').output == 'Output from :log'
        }
    
        def "handles output interleaved with end-of-line erasing"() {
            given:
            def consoleOutput = """\u001B[1A\u001B[1m> Connecting to Daemon\u001B[m\u001B[22D
    \u001B[1A\u001B[90m> IDLE\u001B[39m\u001B[0K\u001B[6D
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/transform/transform.go

    	// determine the input and output bytes are the same. This is obviously more
    	// limited than calling Transform, but can be more efficient in terms of
    	// copying and allocating buffers. Calls to Span and Transform may be
    	// interleaved.
    	Span(src []byte, atEOF bool) (n int, err error)
    }
    
    // NopResetter can be embedded by implementations of Transformer to add a nop
    // Reset method.
    type NopResetter struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pcln.go

    		}
    	}
    	return numPCData
    }
    
    // generateFunctab creates the runtime.functab
    //
    // runtime.functab contains two things:
    //
    //   - pc->func look up table.
    //   - array of func objects, interleaved with pcdata and funcdata
    func (state *pclntab) generateFunctab(ctxt *Link, funcs []loader.Sym, inlSyms map[loader.Sym]loader.Sym, cuOffsets []uint32, nameOffsets map[loader.Sym]uint32) {
    	// Calculate the size of the table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"video/vnd.iptvforum.ttsmpeg2",
    				"video/vnd.motorola.video",
    				"video/vnd.motorola.videop",
    				"video/vnd.mpegurl",
    				"video/vnd.ms-playready.media.pyv",
    				"video/vnd.nokia.interleaved-multimedia",
    				"video/vnd.nokia.videovoip",
    				"video/vnd.objectvideo",
    				"video/vnd.sealed.mpeg1",
    				"video/vnd.sealed.mpeg4",
    				"video/vnd.sealed.swf",
    				"video/vnd.sealedmedia.softseal.mov",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. src/image/testdata/video-001.interlaced.gif

    video-001.interlaced.gif...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 13.8K bytes
    - Viewed (0)
  7. src/image/png/testdata/gray-gradient.interlaced.png

    gray-gradient.interlaced.png...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 13 06:40:00 UTC 2015
    - 247 bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	}
    
    	if typ != recordTypeAlert && typ != recordTypeChangeCipherSpec && len(data) > 0 {
    		// This is a state-advancing message: reset the retry count.
    		c.retryCount = 0
    	}
    
    	// Handshake messages MUST NOT be interleaved with other record types in TLS 1.3.
    	if c.vers == VersionTLS13 && typ != recordTypeHandshake && c.hand.Len() > 0 {
    		return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
    	}
    
    	switch typ {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	return all, nil
    }
    
    // mergeSortedSlice merges the 2 sorted lists by serverOrder with best effort.
    // It will insert each item in `left` list to `right` list. In most cases, the 2 lists will be interleaved.
    // The relative order of left and right are guaranteed to be kept.
    // They have higher precedence than the order in the live list.
    // The place for a item in `left` is found by:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    		// stdout==stderr, we would also use the same testJSONFilter for
    		// cmd.Stdout and cmd.Stderr in order to keep the underlying
    		// interleaving of writes, but then it would see even partial writes
    		// interleaved, which would corrupt the JSON. So, we only process
    		// cmd.Stdout. This has another consequence though: if stdout==stderr,
    		// we have to serialize Writes in case the Writer is not concurrent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top