Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for problem (0.36 sec)

  1. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{tfl.reshape' op requires 'shape' to have at most one dynamic dimension, but got multiple dynamic dimensions at indices 0 and 1. You need to set up the unspecified size(s) to avoid this problem, for example,setting batch size in keras model or setting unspecified input size(s) with fixed ones.}}
      %0 = "tfl.reshape"(%arg0, %cst) : (tensor<3x4xi32>, tensor<3xi32>) -> tensor<1x3x4xi32>
      func.return %0 : tensor<1x3x4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		// net stack), this can result in an infinite retry loop that doesn't
    		// propagate the error up far enough for us to adjust the WriteTimeout.
    		//
    		// To avoid that problem, we explicitly forbid internal retries by rejecting
    		// them in a Proxy hook in the transport.
    		var retries atomic.Int32
    		cst.c.Transport.(*Transport).Proxy = func(*Request) (*url.URL, error) {
    			if retries.Add(1) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    // were for the full stack frame. However, in the case where the called function was
    // one of these wrappers, the rewritten receiver is almost certainly a different type
    // than the original receiver. This is not a problem on the stack, where we use the
    // program counter to determine the type information and understand that
    // during (*Outer).M the receiver is an *Outer while during (*Inner).M the receiver in the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    	podtest "k8s.io/kubernetes/pkg/kubelet/pod/testing"
    	proberesults "k8s.io/kubernetes/pkg/kubelet/prober/results"
    	probetest "k8s.io/kubernetes/pkg/kubelet/prober/testing"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    	"k8s.io/kubernetes/pkg/kubelet/server"
    	serverstats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    	"k8s.io/kubernetes/pkg/kubelet/stats"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
        return catchingMoreGeneric(exceptionType, fallback, executor);
      }
    
      // Avoids generic type capture inconsistency problems where |? extends V| is incompatible with V.
      private <X extends Throwable, W extends V> ClosingFuture<V> catchingMoreGeneric(
          Class<X> exceptionType, final ClosingFunction<? super X, W> fallback, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

          Class<X> exceptionType, ClosingFunction<? super X, ? extends V> fallback, Executor executor) {
        return catchingMoreGeneric(exceptionType, fallback, executor);
      }
    
      // Avoids generic type capture inconsistency problems where |? extends V| is incompatible with V.
      private <X extends Throwable, W extends V> ClosingFuture<V> catchingMoreGeneric(
          Class<X> exceptionType, final ClosingFunction<? super X, W> fallback, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  7. src/encoding/json/testdata/code.json.gz

    ax_t":1229478785,"mean_t":1229213790},{"name":"text-dom-01-f-expected.checksum","kids":[],"cl_weight":0.0014346856765385886,"touches":2,"min_t":1228948796,"max_t":1229478785,"mean_t":1229213790},{"name":"scrolling-embedded-svg-file-image-repaint-problem-expected.png","kids":[],"cl_weight":0.0014346856765385886,"touches":2,"min_t":1228948796,"max_t":1229478785,"mean_t":1229213790},{"name":"control-points-for-S-and-T-expected.png","kids":[],"cl_weight":0.0014346856765385886,"touches":2,"min_t":122...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        testSecureStreamingPost(TransferKind.FIXED_LENGTH)
      }
    
      @Test
      fun secureChunkedStreaming() {
        testSecureStreamingPost(TransferKind.CHUNKED)
      }
    
      /**
       * Users have reported problems using HTTPS with streaming request bodies.
       * http://code.google.com/p/android/issues/detail?id=12860
       */
      private fun testSecureStreamingPost(streamingMode: TransferKind) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        successfulAsList(ImmutableList.of(SettableFuture.create())).cancel(true);
    
        /*
         * Complex (combined.cancel -> input.cancel -> other.set -> setOneValue),
         * to show that this isn't just about problems with the input future we just
         * cancelled:
         */
        final SettableFuture<String> future1 = SettableFuture.create();
        final SettableFuture<String> future2 = SettableFuture.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        successfulAsList(ImmutableList.of(SettableFuture.create())).cancel(true);
    
        /*
         * Complex (combined.cancel -> input.cancel -> other.set -> setOneValue),
         * to show that this isn't just about problems with the input future we just
         * cancelled:
         */
        final SettableFuture<String> future1 = SettableFuture.create();
        final SettableFuture<String> future2 = SettableFuture.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top