Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 648 for 0002 (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/en/docs/tutorial/debugging.md

    ```
    
    </div>
    
    then the internal variable `__name__` in your file, created automatically by Python, will have as value the string `"__main__"`.
    
    So, the section:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    will run.
    
    ---
    
    This won't happen if you import that module (file).
    
    So, if you have another file `importer.py` with:
    
    ```Python
    from myapp import app
    
    # Some more code
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 22 17:04:16 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. src/test/java/jcifs/tests/FileLocationTest.java

            try ( SmbResource r = new SmbFile("smb://0.0.0.0/", getContext());
                  SmbResource s = r.resolve("Public/");
                  SmbResource p = s.resolve("MyVideo.mkv"); ) {
    
                SmbResourceLocator fl = p.getLocator();
    
                assertEquals("0.0.0.0", fl.getServer());
                assertEquals("0.0.0.0", fl.getServerWithDfs());
                assertEquals("Public", fl.getShare());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-Resume-HelloRetryRequest

    00000080  08 07 08 08 08 09 08 0a  08 0b 08 04 08 05 08 06  |................|
    00000090  04 01 05 01 06 01 00 2b  00 03 02 03 04 00 2d 00  |.......+......-.|
    000000a0  02 01 01 00 33 00 26 00  24 00 1d 00 20 8e a4 3b  |....3.&.$... ..;|
    000000b0  ae a1 3e 4f be 70 12 25  be 4d 07 59 da dc 08 4c  |..>O.p.%.M.Y...L|
    000000c0  53 e3 f3 15 b0 99 6f 5a  2d 16 30 e6 37 00 29 00  |S.....oZ-.0.7.).|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/debugging.md

    то встроенная переменная `__name__`, автоматически создаваемая Python в вашем файле, будет иметь значение строкового типа `"__main__"`.
    
    Тогда выполнится условие и эта часть кода:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    будет запущена.
    
    ---
    
    Но этого не произойдет, если вы импортируете этот модуль (файл).
    
    Таким образом, если у вас есть файл `importer.py` с таким импортом:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top