Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 102 for interleaved (0.15 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            fooTest.results.find { it.name == 'testMethod2' && it.endTime == 300 && it.duration == 50 }
        }
    
        def "writes test outputs for interleaved tests"() {
            def test = new DefaultTestDescriptor("1.1.1", "FooTest", "testMethod")
            def test2 = new DefaultTestDescriptor("1.1.2", "FooTest", "testMethod2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

    // CHECK-NEXT:     tf_executor.yield %[[OP_F]] : tensor<i32>
    // CHECK:        tf_executor.fetch %[[ISLAND]] : tensor<i32>
    
    
    // Test if islands can be merged when non dependent islands are interleaved.
    // CHECK-LABEL: func @islands_interleaved
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i32>, %[[ARG_1:[a-z0-9]*]]: tensor<i32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/eventbus/Dispatcher.java

        // a multithreaded environment for a couple of reasons:
        //
        // 1. Subscribers to events posted on different threads can be interleaved with each other
        //    freely. (A event on one thread, B event on another could yield any of
        //    [a1, a2, a3, b1, b2], [a1, b2, a2, a3, b2], [a1, b2, b3, a2, a3], etc.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/Dispatcher.java

        // a multithreaded environment for a couple of reasons:
        //
        // 1. Subscribers to events posted on different threads can be interleaved with each other
        //    freely. (A event on one thread, B event on another could yield any of
        //    [a1, a2, a3, b1, b2], [a1, b2, a2, a3, b2], [a1, b2, b3, a2, a3], etc.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/internal/zstd/literals.go

    		t = huffTable[idx]
    		outbuf = append(outbuf, byte(t>>8))
    		rbr.cnt -= uint32(t & 0xff)
    	}
    
    	return outbuf, nil
    }
    
    // readLiteralsFourStreams reads four interleaved streams of
    // compressed literals.
    func (r *Reader) readLiteralsFourStreams(data block, off, totalStreamsSize, regeneratedSize int, outbuf []byte) ([]byte, error) {
    	// Read the jump table to find out where the streams are.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

                .child "Download ${server.uri}${projectD.artifactPath}"
        }
    
        def "generates events for interleaved project configuration and dependency resolution"() {
            given:
            settingsFile << """
                rootProject.name = 'multi'
                include 'a', 'b'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
        This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
        formed by whitespace-only events must be retained.
        -->
        <prop1><!-- X -->That's<!-- X --> <!-- X -->a<!-- X --> <!-- X -->test!<!-- X --></prop1>
    
        <!--
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// (json or protobuf) of the response object.
    	// NOTE: serialization and writing of the serialized raw bytes to the
    	// associated http ResponseWriter object are interleaved, and hence
    	// the latency measured here will include the time spent writing the
    	// serialized raw bytes to the http ResponseWriter object.
    	SerializationTracker DurationTracker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK-NEXT: _replication_info = "replicate"
    // CHECK-SAME: device = "/device:TPU:0"
    // CHECK-SAME: topology = "topology"
    // CHECK:      return %[[CLUSTER]]
    
    
    // Test multiple clusters interleaved.
    // CHECK-LABEL: func @interleaved_clusters
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<i1>)
    func.func @interleaved_clusters(%arg0 : tensor<i1>) -> (tensor<i1>, tensor<i1>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

       *  * If it is a message frame this will result in a single call to [FrameCallback.onReadMessage].
       *    If the message spans multiple frames, each interleaved control frame will result in a
       *    corresponding call to [FrameCallback].
       */
      @Throws(IOException::class)
      fun processNextFrame() {
        readHeader()
        if (isControlFrame) {
          readControlFrame()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top