Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 662 for 000s (0.06 sec)

  1. src/internal/trace/testdata/fuzz/FuzzReader/d478e18d2d6756b7

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 102 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. cni/pkg/log/uds_test.go

    	}
    }
    
    func TestParseCniLog(t *testing.T) {
    	wantT := &time.Time{}
    	assert.NoError(t, wantT.UnmarshalText([]byte("2020-01-01T00:00:00.356374Z")))
    	cases := []struct {
    		name string
    		in   string
    		out  cniLog
    	}{
    		{
    			"without keys",
    			`{"level":"info","time":"2020-01-01T00:00:00.356374Z","msg":"my message"}`,
    			cniLog{
    				Level:     "info",
    				Time:      *wantT,
    				Msg:       "my message",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionStatsTest.groovy

                    GarbageCollectionStats.forHeap([]),
                    GarbageCollectionStats.forNonHeap([])
            ]
        }
    
        def getHeapEvents() {
            return [
                    new GarbageCollectionEvent(0000, new MemoryUsage(0, 100, 1000, 1000), 1),
                    new GarbageCollectionEvent(1000, new MemoryUsage(0, 250, 1000, 1000), 2),
                    new GarbageCollectionEvent(2000, new MemoryUsage(0, 500, 1000, 1000), 3),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. docs_src/debugging/tutorial001.py

    import uvicorn
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def root():
        a = "a"
        b = "b" + a
        return {"hello world": b}
    
    
    if __name__ == "__main__":
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 223 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/fuzz/FuzzReader/9d6ee7d3ddf8d566

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 163 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/extract_tpu_copy_with_dynamic_shape_op.mlir

    	  tf_device.return %3#0, %3#1 : tensor<2048xi32>, tensor<2048xi32>
    	}) {device = "TPU_REPLICATED_HOST_0"} : () -> (tensor<2048xi32>, tensor<2048xi32>)
        return %0#0, %0#1: tensor<2048xi32>, tensor<2048xi32>
      }
    
      // CHECK-LABEL: func @valid_copy_op_in_non_replicated_host
    
      // CHECK: "tf_device.launch"
      // CHECK-SAME: "/job:localhost/replica:0/task:0/device:CPU:0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/fuzz/FuzzReader/2b05796f9b2fc48d

    go test fuzz v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 101 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

                std::vector<int64_t>(),
                "device coordinate (0, 0, 0, -1) in 'topology' is outside "
                "of mesh shape (2, 1, 1, 1)"),
            std::make_tuple(
                2, 1, TopologyWithDeviceCoordinates({0, 0, 0, 1, 1, 0, 0, 0}),
                std::vector<int64_t>(),
                "device coordinate (0, 0, 0, 1) in 'topology' is outside "
                "of mesh shape (2, 1, 1, 1)"),
            std::make_tuple(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_address.go

    package core
    
    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    )
    
    const (
    	// WildcardAddress binds to all IP addresses
    	WildcardAddress = "0.0.0.0"
    
    	// WildcardIPv6Address binds to all IPv6 addresses
    	WildcardIPv6Address = "::"
    
    	// LocalhostAddress for local binding
    	LocalhostAddress = "127.0.0.1"
    
    	// LocalhostIPv6Address for local binding
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top