Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for node_device (0.44 sec)

  1. api/except.txt

    pkg os (linux-arm), const O_SYNC = 4096
    pkg os (linux-arm-cgo), const O_SYNC = 1052672
    pkg os (linux-arm-cgo), const O_SYNC = 4096
    pkg os, const ModeAppend FileMode
    pkg os, const ModeCharDevice FileMode
    pkg os, const ModeDevice FileMode
    pkg os, const ModeDir FileMode
    pkg os, const ModeExclusive FileMode
    pkg os, const ModeIrregular FileMode
    pkg os, const ModeNamedPipe FileMode
    pkg os, const ModePerm FileMode
    pkg os, const ModeSetgid FileMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. src/archive/tar/writer_test.go

    				data, origdata)
    		}
    	}
    }
    
    func TestWriterAddFSNonRegularFiles(t *testing.T) {
    	fsys := fstest.MapFS{
    		"device":  {Data: []byte("hello"), Mode: 0755 | fs.ModeDevice},
    		"symlink": {Data: []byte("world"), Mode: 0755 | fs.ModeSymlink},
    	}
    	var buf bytes.Buffer
    	tw := NewWriter(&buf)
    	if err := tw.AddFS(fsys); err == nil {
    		t.Fatal("expected error, got nil")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

            tf_device.return %identity : tensor<i32>
          }) {device = "some_device"} : () -> (tensor<i32>)
          return %launch : tensor<i32>
        }
        ```
    
        will be transformed into:
    
        ```mlir
        func @computation(%arg0: tensor<i32>) -> tensor<i32> {
          %launch = "tf_device.launch_func"(%arg0) {device = "some_device", func = @_func} : (tensor<i32>) -> tensor<i32>
          return %launch : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        tf_device.return %identity : tensor<i32>
      }) {device = "some_device"} : () -> (tensor<i32>)
      return %launch : tensor<i32>
    }
    ```
    
    will be transformed into:
    
    ```mlir
    func @computation(%arg0: tensor<i32>) -> tensor<i32> {
      %launch = "tf_device.launch_func"(%arg0) {device = "some_device", func = @_func} : (tensor<i32>) -> tensor<i32>
      return %launch : tensor<i32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg io/fs, const ModeAppend = 1073741824
    pkg io/fs, const ModeAppend FileMode
    pkg io/fs, const ModeCharDevice = 2097152
    pkg io/fs, const ModeCharDevice FileMode
    pkg io/fs, const ModeDevice = 67108864
    pkg io/fs, const ModeDevice FileMode
    pkg io/fs, const ModeDir = 2147483648
    pkg io/fs, const ModeDir FileMode
    pkg io/fs, const ModeExclusive = 536870912
    pkg io/fs, const ModeExclusive FileMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"FileMode", Type, 16},
    		{"FormatDirEntry", Func, 21},
    		{"FormatFileInfo", Func, 21},
    		{"Glob", Func, 16},
    		{"GlobFS", Type, 16},
    		{"ModeAppend", Const, 16},
    		{"ModeCharDevice", Const, 16},
    		{"ModeDevice", Const, 16},
    		{"ModeDir", Const, 16},
    		{"ModeExclusive", Const, 16},
    		{"ModeIrregular", Const, 16},
    		{"ModeNamedPipe", Const, 16},
    		{"ModePerm", Const, 16},
    		{"ModeSetgid", Const, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg net/url, type Userinfo struct
    pkg net/url, type Values map[string][]string
    pkg os, const DevNull ideal-string
    pkg os, const ModeAppend FileMode
    pkg os, const ModeCharDevice FileMode
    pkg os, const ModeDevice FileMode
    pkg os, const ModeDir FileMode
    pkg os, const ModeExclusive FileMode
    pkg os, const ModeNamedPipe FileMode
    pkg os, const ModePerm FileMode
    pkg os, const ModeSetgid FileMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg os (windows-amd64), const PathListSeparator = 59
    pkg os (windows-amd64), const PathSeparator = 92
    pkg os, const ModeAppend = 1073741824
    pkg os, const ModeCharDevice = 2097152
    pkg os, const ModeDevice = 67108864
    pkg os, const ModeDir = 2147483648
    pkg os, const ModeExclusive = 536870912
    pkg os, const ModeNamedPipe = 33554432
    pkg os, const ModePerm = 511
    pkg os, const ModeSetgid = 4194304
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top