Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for doBind (0.34 sec)

  1. hack/local-up-cluster.sh

    kube::util::ensure-cfssl
    
    ### IF the user didn't supply an output/ for the build... Then we detect.
    if [ "${GO_OUT}" == "" ]; then
      detect_binary
    fi
    echo "Detected host and ready to start services.  Doing some housekeeping first..."
    echo "Using GO_OUT ${GO_OUT}"
    export KUBELET_CIDFILE=${TMP_DIR}/kubelet.cid
    if [[ "${ENABLE_DAEMON}" = false ]]; then
      trap cleanup EXIT
      trap cleanup INT
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    // but contains no pointers itself and an immutable part that's passed and
    // returned by value and can contain pointers. We could potentially hide that
    // we're doing that in trivial methods that are inlined into the caller that has
    // the stack allocation, but that's fragile.
    type unwinder struct {
    	// frame is the current physical stack frame, or all 0s if
    	// there is no frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    			// the preceding listeners from the sidecarScope. This allows
    			// users to specify a trimmed set of services for one or more
    			// listeners and then add a catch all egress listener for all
    			// other ports. Doing so allows people to restrict the set of
    			// services exposed on one or more listeners, and avoid hard
    			// port conflicts like tcp taking over http or http taking over
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //   onehot = [[0, 1, 0, 0], [0, 0, 1, 0]]
    //   result = [[ 7, 19],   # == 1st column in filter
    //             [11, 23]]   # == 2nd column in filter
    // This is exactly what the EmbeddedLookup operator is doing, on the transposed
    // matrix, without doing any arithmetic but only memcpy.
    def ReplaceOneHotFullyConnectedWithLookup : Pat<
      (TFL_FullyConnectedOp:$outputs
        (TFL_OneHotOp
          AnyStaticShapeTensor:$indices,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    				casGToWaitingForGC(userG, _Grunning, waitReasonGarbageCollectionScan)
    			}
    
    			// TODO: suspendG blocks (and spins) until gp
    			// stops, which may take a while for
    			// running goroutines. Consider doing this in
    			// two phases where the first is non-blocking:
    			// we scan the stacks we can and ask running
    			// goroutines to scan themselves; and the
    			// second blocks.
    			stopped := suspendG(gp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (ATOMIC_HELPER.casValue(this, null, valueToSet)) {
            // the listener is responsible for calling completeWithFuture, directExecutor is appropriate
            // since all we are doing is unpacking a completed future which should be fast.
            try {
              future.addListener(valueToSet, DirectExecutor.INSTANCE);
            } catch (Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (ATOMIC_HELPER.casValue(this, null, valueToSet)) {
            // the listener is responsible for calling completeWithFuture, directExecutor is appropriate
            // since all we are doing is unpacking a completed future which should be fast.
            try {
              future.addListener(valueToSet, DirectExecutor.INSTANCE);
            } catch (Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
      // def : Pat<(TF_TensorListSetItemOp $input, $index, $item),
      //      (Concat
      //        concat_dim = 0,
      //        (Slice $input, [0, 0, ...], (Concat (ExpandDims $index, expand_dim =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(synStream.outFinished).isFalse()
        val ping = peer.takeFrame()
        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
      }
    
      /**
       * Test that the client sends a RST_STREAM if doing so won't disrupt the output stream.
       */
      @Test fun clientClosesClientInputStream() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	// peer's requirements is selected automatically.
    	//
    	// Server configurations must set one of Certificates, GetCertificate or
    	// GetConfigForClient. Clients doing client-authentication may set either
    	// Certificates or GetClientCertificate.
    	//
    	// Note: if there are multiple Certificates, and they don't have the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top