Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Ftruncate (0.25 sec)

  1. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %19 = "tf.StringLength"(%arg0) {device = "", unit = "BYTE"} : (tensor<1x!tf_type.string>) -> tensor<1xi32>
      %20 = "tf.ExpandDims"(%19, %7) {device = ""} : (tensor<1xi32>, tensor<i32>) -> tensor<1x1xi32>
      %21 = "tf.Cast"(%20) {Truncate = false, device = ""} : (tensor<1x1xi32>) -> tensor<1x1xi64>
      %22 = "tf.Reshape"(%21, %12) {device = ""} : (tensor<1x1xi64>, tensor<1xi64>) -> tensor<1xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), func Fpathconf(int, int) (int, error)
    pkg syscall (netbsd-arm64-cgo), func Fstat(int, *Stat_t) error
    pkg syscall (netbsd-arm64-cgo), func Fsync(int) error
    pkg syscall (netbsd-arm64-cgo), func Ftruncate(int, int64) error
    pkg syscall (netbsd-arm64-cgo), func Futimes(int, []Timeval) error
    pkg syscall (netbsd-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), func Fstat(int, *Stat_t) error
    pkg syscall (darwin-arm64), func Fstatfs(int, *Statfs_t) error
    pkg syscall (darwin-arm64), func Fsync(int) error
    pkg syscall (darwin-arm64), func Ftruncate(int, int64) error
    pkg syscall (darwin-arm64), func Futimes(int, []Timeval) error
    pkg syscall (darwin-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error)
    pkg syscall (darwin-arm64), func Getdtablesize() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{FCTIDUZ, 0xfc0007ff00000000, 0xfc00075e00000000, 0x1f000000000000, // Floating Convert with truncate Double-Precision To Unsigned Doubleword format X-form (fctiduz FRT,FRB)
    		[6]*argField{ap_FPReg_6_10, ap_FPReg_16_20}},
    	{FCTIDUZCC, 0xfc0007ff00000000, 0xfc00075f00000000, 0x1f000000000000, // Floating Convert with truncate Double-Precision To Unsigned Doubleword format X-form (fctiduz. FRT,FRB)
    		[6]*argField{ap_FPReg_6_10, ap_FPReg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	// missing, however. Use the MetaHeadersFrame.Pseudo accessor
    	// method access pseudo headers.
    	Fields []hpack.HeaderField
    
    	// Truncated is whether the max header list size limit was hit
    	// and Fields is incomplete. The hpack decoder state is still
    	// valid, however.
    	Truncated bool
    }
    
    // PseudoValue returns the given pseudo header field's value.
    // The provided pseudo field should not contain the leading colon.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @convert_i32_f32(
    // CHECK-SAME:                          %[[VAL_0:.*]]: tensor<2xi32>) -> tensor<2xf32> {
    // CHECK:           %[[VAL_1:.*]] = "tf.Cast"(%[[VAL_0]]) <{Truncate = false}> : (tensor<2xi32>) -> tensor<2xf32>
    // CHECK:           return %[[VAL_1]] : tensor<2xf32>
    // CHECK:         }
    func.func @convert_i32_f32(%arg0: tensor<2xi32>) -> tensor<2xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

    - The Endpoints controller will now set the `endpoints.kubernetes.io/over-capacity` annotation to "warning" when an Endpoints resource contains more than 1000 addresses. In a future release, the controller will truncate Endpoints that exceed this limit. The EndpointSlice API can be used to support significantly larger number of addresses. ([#99975](https://github.com/kubernetes/kubernetes/pull/99975), [@robscott](https://github.com/robscott)) [SIG Apps and Network]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.22.md

    - Endpoints that have more than 1000 endpoints will be truncated and the `endpoints.kubernetes.io/over-capacity` annotation on the Endpoints resource will be set to `truncated`. ([#103520](https://github.com/kubernetes/kubernetes/pull/103520), [@swetharepakula](https://github.com/swetharepakula)) [SIG Apps and Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  9. doc/go_spec.html

    relationships:
    </p>
    
    <pre>
    x = q*y + r  and  |r| &lt; |y|
    </pre>
    
    <p>
    with <code>x / y</code> truncated towards zero
    (<a href="https://en.wikipedia.org/wiki/Modulo_operation">"truncated division"</a>).
    </p>
    
    <pre>
     x     y     x / y     x % y
     5     3       1         2
    -5     3      -1        -2
     5    -3      -1         2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    -text-middle{vertical-align:middle!important}.uk-text-bottom{vertical-align:bottom!important}.uk-text-baseline{vertical-align:baseline!important}.uk-text-nowrap{white-space:nowrap}.uk-text-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}td.uk-text-truncate,th.uk-text-truncate{max-width:0}.uk-text-break{overflow-wrap:break-word;word-wrap:break-word}td.uk-text-break,th.uk-text-break{word-break:break-all}[class*=uk-column-]{column-gap:30px}@media (min-width:1200px)...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
Back to top