Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for pointerleave (0.37 sec)

  1. src/cmd/compile/internal/ssa/html.go

        if (window.PointerEvent) {
            svg.addEventListener('pointerdown', startDrag);
            svg.addEventListener('pointermove', drag);
            svg.addEventListener('pointerup', endDrag);
            svg.addEventListener('pointerleave', endDrag);
        } else {
            svg.addEventListener('mousedown', startDrag);
            svg.addEventListener('mousemove', drag);
            svg.addEventListener('mouseup', endDrag);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    
    class TF_AllTypesMatchPred<list<string> values> :
        CPred<"tf_type::AreCastCompatible(llvm::ArrayRef({" #
          !interleave(values, ", ") # "}))">;
    
    class TF_AllTypesMatch<list<string> names> :
        PredOpTrait<
            "all of {" # !interleave(names, ", ") #
              "} have dynamically equal types ",
            TF_AllTypesMatchPred<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

                            artifact(name: 'in-default')
                            module('org.test:in-default:1.0')
                        }
                    }
                }
            }
        }
    
        def "can interleave ivy and maven modules"() {
            def m1 = ivyRepo.module('org.test', 'm1', '1.0').publish()
            def m2 = mavenRepo.module('org.test', 'm2', '1.0')
                .dependsOn(m1)
                .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

    val commonEmptyHeaders: Headers = Headers.headersOf()
    val commonEmptyRequestBody: RequestBody = EMPTY_BYTE_ARRAY.toRequestBody()
    val commonEmptyResponse: ResponseBody = EMPTY_BYTE_ARRAY.toResponseBody()
    
    internal fun <T> interleave(
      a: Iterable<T>,
      b: Iterable<T>,
    ): List<T> {
      val ia = a.iterator()
      val ib = b.iterator()
    
      return buildList {
        while (ia.hasNext() || ib.hasNext()) {
          if (ia.hasNext()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/build.go

    			// It's tempting to fill in the "Dir" field to point within the vendor
    			// directory, but that would be misleading: the vendor directory contains
    			// a flattened package tree, not complete modules, and it can even
    			// interleave packages from different modules if one module path is a
    			// prefix of the other.
    		} else {
    			completeFromModCache(info)
    		}
    		return info
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/EventListener.kt

     *
     * This nesting is typical but not strict. For example, when calls use "Expect: continue" the
     * request body start and end events occur within the response header events. Similarly,
     * [duplex calls][RequestBody.isDuplex] interleave the request and response bodies.
     *
     * Since connections may be reused, the proxy selection, DNS, and connect events may not be present
     * for a call. In future releases of OkHttp these events may also occur concurrently to permit
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge_test.go

    	// state of the scavengeIndex has all of the chunks as dense in the last
    	// generation and empty to the scavenger.
    	//
    	// There are a few additional tests that interleave mark and find operations,
    	// so they're defined separately, but use the same infrastructure.
    	setup := func(t *testing.T, force bool) (mark markFunc, find findFunc, nextGen func()) {
    		t.Helper()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. tensorflow/cc/gradients/array_grad.cc

      }
    
      Shape::Attrs shape_attrs;
      shape_attrs.out_type_ = op.input_type(1);
      auto input_shape = Shape(scope, op.input(0), shape_attrs);
      // We interleave multiples and input_shape to get split_shape,
      // reshape grad to split_shape, and reduce along all even
      // dimensions (the tiled dimensions) to get the result
      // with shape input_shape.  For example
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

          if (result == CancellationException.class) {
            assertTrue(future.isCancelled());
            assertTrue(cancellationSuccess.get());
            // cancellation can interleave in 3 ways
            // 1. prior to setFuture
            // 2. after setFuture before set() on the future assigned
            // 3. after setFuture and set() are called but before the listener completes.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  10. src/image/jpeg/reader.go

    		}, nil
    	}
    
    	// The first three channels (cyan, magenta, yellow) of the CMYK
    	// were decoded into d.img3, but each channel was decoded into a separate
    	// []byte slice, and some channels may be subsampled. We interleave the
    	// separate channels into an image.CMYK's single []byte slice containing 4
    	// contiguous bytes per pixel.
    	bounds := d.img3.Bounds()
    	img := image.NewCMYK(bounds)
    
    	translations := [4]struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top