Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for inter (0.09 sec)

  1. src/net/http/serve_test.go

    	}
    	activeLog := make(chan *stateLog, 1)
    
    	// wantLog invokes doRequests, then waits for the resulting connection to
    	// either pass through the sequence of states in want or enter a state outside
    	// of that sequence.
    	wantLog := func(doRequests func(), want ...ConnState) {
    		t.Helper()
    		complete := make(chan struct{})
    		activeLog <- &stateLog{want: want, complete: complete}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
    Computes the 2-dimensional discrete Fourier transform of a real-valued signal
    over the inner-most 2 dimensions of `input`.
    
    Since the DFT of a real signal is Hermitian-symmetric, `RFFT2D` only returns the
    `fft_length / 2 + 1` unique components of the FFT for the inner-most dimension
    of `output`: the zero-frequency term, followed by the `fft_length / 2`
    positive-frequency terms.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Bind asset inputs to asset ops.
      DCHECK_EQ(init_func_op.getNumArguments(), assets.size());
      for (const auto& iter : llvm::enumerate(assets)) {
        auto asset_op = iter.value().op;
        init_func_op.setArgAttr(
            iter.index(), "tf_saved_model.bound_input",
            mlir::SymbolRefAttr::get(builder.getContext(), asset_op.getName()));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    	Ydr0
    	Ydr1
    	Ydr2
    	Ydr3
    	Ydr4
    	Ydr5
    	Ydr6
    	Ydr7
    	Ytr0
    	Ytr1
    	Ytr2
    	Ytr3
    	Ytr4
    	Ytr5
    	Ytr6
    	Ytr7
    	Ymr
    	Ymm
    	Yxr0          // X0 only. "<XMM0>" notation in Intel manual.
    	YxrEvexMulti4 // [ X<n> - X<n+3> ]; multisource YxrEvex
    	Yxr           // X0..X15
    	YxrEvex       // X0..X31
    	Yxm
    	YxmEvex       // YxrEvex+Ym
    	Yxvm          // VSIB vector array; vm32x/vm64x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		// the previous termination may not be present.  This next code block ensures that if the container was previously running
    		// then when that container status disappears, we can infer that it terminated even if we don't know the status code.
    		// By setting the lasttermination state we are able to leave the container status waiting and present more accurate
    		// data via the API.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          fail();
        } catch (CancellationException expected) {
          // There should be two CancellationException chained together.  The outer one should have the
          // stack trace of where the get() call was made, and the inner should have the stack trace of
          // where the immediateCancelledFuture() call was made.
          List<StackTraceElement> stackTrace = ImmutableList.copyOf(expected.getStackTrace());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          fail();
        } catch (CancellationException expected) {
          // There should be two CancellationException chained together.  The outer one should have the
          // stack trace of where the get() call was made, and the inner should have the stack trace of
          // where the immediateCancelledFuture() call was made.
          List<StackTraceElement> stackTrace = ImmutableList.copyOf(expected.getStackTrace());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	// program size, we approximate by the length. To ensure that a program that is smaller than 1024
    	// length but larger than 1024 size does not enter the system, we program Envoy to allow very large
    	// regexs to avoid NACKs. See
    	// https://github.com/jpeach/snippets/blob/889fda84cc8713af09205438b33553eb69dd5355/re2sz.cc to
    	// evaluate program size.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. src/crypto/x509/x509_test.go

    		if b == nil {
    			t.Fatalf("couldn't decode test certificate")
    		}
    		_, err := ParseCertificate(b.Bytes)
    		if err == nil {
    			t.Fatalf("expected ParseCertificate to fail")
    		}
    		expected := "x509: inner and outer signature algorithm identifiers don't match"
    		if err.Error() != expected {
    			t.Errorf("unexpected error from ParseCertificate: got %q, want %q", err.Error(), expected)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

          }
        }
      }
    
      @SuppressWarnings("unchecked")
      final Segment<K, V>[] newSegmentArray(int ssize) {
        return (Segment<K, V>[]) new Segment<?, ?>[ssize];
      }
    
      // Inner Classes
    
      /**
       * Segments are specialized versions of hash tables. This subclass inherits from ReentrantLock
       * opportunistically, just to simplify some locking and avoid separate construction.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top