Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for interleaved (0.14 sec)

  1. docs/changelogs/changelog_3x.md

        The `RequestBody.writeTo()` method may now retain a reference to the provided sink and
        hand it off to another thread to write to it after `writeTo` returns.
    
        The `EventListener` may now see requests and responses interleaved in ways not previously
        permitted. For example, a listener may receive `responseHeadersStart()` followed by
        `requestBodyEnd()`, both on the same call. Such events may be triggered by different threads
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/testing/testing.go

    		// entirely possible to get output like AABBBA. The same problem
    		// happens inside the operating system kernel if we switch to
    		// blocking I/O on the pipe. This interleaved output can do things
    		// like print unrelated messages in the middle of a TestFoo line,
    		// which confuses test2json. Setting os.Stderr = os.Stdout will make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		}
    	} else {
    		// On a 32-bit machine, we're much more concerned
    		// about keeping the usable heap contiguous.
    		// Hence:
    		//
    		// 1. We reserve space for all heapArenas up front so
    		// they don't get interleaved with the heap. They're
    		// ~258MB, so this isn't too bad. (We could reserve a
    		// smaller amount of space up front if this is a
    		// problem.)
    		//
    		// 2. We hint the heap to start right above the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/InetAddressOrder.kt

     * limitations under the License.
     */
    
    package okhttp3.internal.connection
    
    import java.net.Inet6Address
    import java.net.InetAddress
    import okhttp3.internal.interleave
    
    /**
     * Implementation of HappyEyeballs Sorting Addresses.
     *
     * The current implementation does not address any of:
     *  - Async DNS split by IP class
     *  - Stateful handling of connectivity results
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td

                        ".getStorageTypeIntegralWidth() == " # !head(params)>]>,
        "Q" # !if (signed, "I", "UI") # !head(params) # " type"> {
      string name = n;
      string asTraitArgsStr =
        !interleave(params, ", ") # !if(signed, ", true", ", false");
    }
    
    // Uniform quantized types. Two integers "smantissa" and "sexp" are used to
    // express the Mantissa and Exponent components of the floating-point scale so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/order_by_dialect.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-order-by-dialect --split-input-file | FileCheck %s
    
    // CHECK-LABEL: @interleave
    func.func @interleave(%arg0: f32) -> (f32, f32, f32) attributes {ignore_side_effects_for_testing} {
      %0 = "x.a"(%arg0) : (f32) -> f32
      %1 = "y.a"(%arg0) : (f32) -> f32
      %2 = "z.a"(%arg0) : (f32) -> f32
      %3 = "x.b"(%0) : (f32) -> f32
      %4 = "y.b"(%1) : (f32) -> f32
      %5 = "z.b"(%2) : (f32) -> f32
      %6 = "x.c"(%3) : (f32) -> f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool RefineWithInferTypeOpInterface(InferTypeOpInterface infer_ti);
    
      // Returns all the callers of a function.
      // Note: Usage of the return value of this function may not be interleaved
      // with insertions to the callers map. This could occur if GetCallers is
      // called with two separate functions, the 2nd one incurs a resize and then
      // both first and 2nd stored callers are used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

      // CHECK-NEXT: tf.NoOp
      // CHECK-NEXT: return
    }
    
    // -----
    
    // Test what happens if we don't preprocess the input function,
    // i.e., don't first group operations by dialect.
    
    func.func @interleave(%arg0: f32) -> (f32, f32, f32) {
      %0 = "x.a"(%arg0) : (f32) -> f32
      %1 = "y.a"(%arg0) : (f32) -> f32
      %2 = "z.a"(%arg0) : (f32) -> f32
      %3 = "x.b"(%0) : (f32) -> f32
      %4 = "y.b"(%1) : (f32) -> f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. src/crypto/sha1/sha1block_amd64.go

    var useAVX2 = cpu.X86.HasAVX2 && cpu.X86.HasBMI1 && cpu.X86.HasBMI2
    
    func block(dig *digest, p []byte) {
    	if useAVX2 && len(p) >= 256 {
    		// blockAVX2 calculates sha1 for 2 block per iteration
    		// it also interleaves precalculation for next block.
    		// So it may read up-to 192 bytes past end of p
    		// We may add checks inside blockAVX2, but this will
    		// just turn it into a copy of blockAMD64,
    		// so call it directly, instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 926 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentBuildsCachingIntegrationTest.groovy

        @Rule BlockingHttpServer blockingServer = new BlockingHttpServer()
    
        def setup() {
            blockingServer.start()
            server.start()
        }
    
        def "can interleave resolution across multiple build processes"() {
            def mod1 = mavenHttpRepo.module("group1", "module1", "1.0").publish()
            def mod2 = mavenHttpRepo.module("group1", "module2", "0.99").dependsOn(mod1).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top