Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 173 for minor (0.04 sec)

  1. tensorflow/c/eager/c_api_test_util.h

    // Return a 1-D INT32 tensor containing a single value 1.
    TFE_TensorHandle* TestAxisTensorHandle(TFE_Context* ctx);
    
    // Return an op taking minimum of `input` long `axis` dimension.
    TFE_Op* MinOp(TFE_Context* ctx, TFE_TensorHandle* input,
                  TFE_TensorHandle* axis);
    
    // If there is a device of type `device_type`, returns true
    // and sets 'device_name' accordingly.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type BpfVersion struct
    pkg syscall (netbsd-arm64-cgo), type BpfVersion struct, Major uint16
    pkg syscall (netbsd-arm64-cgo), type BpfVersion struct, Minor uint16
    pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct
    pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Len uint32
    pkg syscall (netbsd-arm64-cgo), type Cmsghdr struct, Level int32
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Network
    
    For 1.13, the areas of focus were in IPv6, DNS improvements and some smaller items:
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

        maxChunkSize: Int,
      ) = apply {
        removeHeader("Content-Length")
        headersBuilder.add(CHUNKED_BODY_HEADER)
    
        val bytesOut = Buffer()
        while (!body.exhausted()) {
          val chunkSize = minOf(body.size, maxChunkSize.toLong())
          bytesOut.writeHexadecimalUnsignedLong(chunkSize)
          bytesOut.writeUtf8("\r\n")
          bytesOut.write(body, chunkSize)
          bytesOut.writeUtf8("\r\n")
        }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

                } else if (readBuffer.size > 0L) {
                  // Prepare to read bytes. Start by moving them to the caller's buffer.
                  readBytesDelivered = readBuffer.read(sink, minOf(byteCount, readBuffer.size))
                  readBytes.update(total = readBytesDelivered)
    
                  val unacknowledgedBytesRead = readBytes.unacknowledged
                  if (errorExceptionToDeliver == null &&
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

          val ageMillis = cacheResponseAge()
          var freshMillis = computeFreshnessLifetime()
    
          if (requestCaching.maxAgeSeconds != -1) {
            freshMillis = minOf(freshMillis, SECONDS.toMillis(requestCaching.maxAgeSeconds.toLong()))
          }
    
          var minFreshMillis: Long = 0
          if (requestCaching.minFreshSeconds != -1) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg syscall (freebsd-arm64), type BpfVersion struct
    pkg syscall (freebsd-arm64), type BpfVersion struct, Major uint16
    pkg syscall (freebsd-arm64), type BpfVersion struct, Minor uint16
    pkg syscall (freebsd-arm64), type BpfZbuf struct
    pkg syscall (freebsd-arm64), type BpfZbuf struct, Bufa *uint8
    pkg syscall (freebsd-arm64), type BpfZbuf struct, Bufb *uint8
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  8. api/go1.16.txt

    pkg syscall (darwin-arm64), type BpfStat struct, Recv uint32
    pkg syscall (darwin-arm64), type BpfVersion struct
    pkg syscall (darwin-arm64), type BpfVersion struct, Major uint16
    pkg syscall (darwin-arm64), type BpfVersion struct, Minor uint16
    pkg syscall (darwin-arm64), type Cmsghdr struct
    pkg syscall (darwin-arm64), type Cmsghdr struct, Len uint32
    pkg syscall (darwin-arm64), type Cmsghdr struct, Level int32
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

            val effectiveHeaderTableSize = minOf(headerTableSizeSetting, SETTINGS_HEADER_TABLE_SIZE_LIMIT)
    
            if (maxDynamicTableByteCount == effectiveHeaderTableSize) return // No change.
    
            if (effectiveHeaderTableSize < maxDynamicTableByteCount) {
              smallestHeaderTableSizeSetting =
                minOf(smallestHeaderTableSizeSetting, effectiveHeaderTableSize)
            }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.6.md

    * Bump cluster autoscaler to v0.5.4, which fixes scale down issues with pods ignoring SIGTERM. ([#45483](https://github.com/kubernetes/kubernetes/pull/45483), [@mwielgus](https://github.com/mwielgus))
    * Fixes and minor cleanups to pod (anti)affinity predicate ([#45098](https://github.com/kubernetes/kubernetes/pull/45098), [@wojtek-t](https://github.com/wojtek-t))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
Back to top