Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TOOD (0.08 sec)

  1. samples/slack/src/main/java/okhttp3/slack/RtmSession.java

      //                the body from slack is a 0-byte-buffer
      @Override public synchronized void onOpen(WebSocket webSocket, Response response) {
        System.out.println("onOpen: " + response);
      }
    
      // TOOD(jwilson): decode incoming messages and dispatch them somewhere.
      @Override public void onMessage(WebSocket webSocket, String text) {
        System.out.println("onMessage: " + text);
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Nov 19 20:16:58 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver_test.cc

          return %0 : tensor<1x4x4x3xf32>
        }
      }
    )mlir";
    
    // TOOD: b/323478683 - Directly use types rather than creating a `unique_ptr`.
    std::unique_ptr<quant::OpQuantSpec> GetOpQuantSpec(
        const mlir::Operation* op,
        bool disable_per_channel_for_dense_layers = false) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vet/vet_test.go

    		})
    	}
    
    	// The loopclosure analyzer (aka "rangeloop" before CL 140578)
    	// is a no-op for files whose version >= go1.22, so we use a
    	// go.mod file in the rangeloop directory to "downgrade".
    	//
    	// TOOD(adonovan): delete when go1.21 goes away.
    	t.Run("loopclosure", func(t *testing.T) {
    		cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), ".")
    		cmd.Env = append(os.Environ(), "GOWORK=off")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top