Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 231 for RangeTs (0.15 sec)

  1. src/net/textproto/reader.go

    func initCommonHeader() {
    	commonHeader = make(map[string]string)
    	for _, v := range []string{
    		"Accept",
    		"Accept-Charset",
    		"Accept-Encoding",
    		"Accept-Language",
    		"Accept-Ranges",
    		"Cache-Control",
    		"Cc",
    		"Connection",
    		"Content-Id",
    		"Content-Language",
    		"Content-Length",
    		"Content-Transfer-Encoding",
    		"Content-Type",
    		"Cookie",
    		"Date",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. src/io/io.go

    // WriteAt should not affect nor be affected by the underlying
    // seek offset.
    //
    // Clients of WriteAt can execute parallel WriteAt calls on the same
    // destination if the ranges do not overlap.
    //
    // Implementations must not retain p.
    type WriterAt interface {
    	WriteAt(p []byte, off int64) (n int, err error)
    }
    
    // ByteReader is the interface that wraps the ReadByte method.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/codegen.cc

      // C++11 Standard.  Note that nondigit is defined as [_a-zA-Z] and digit is
      // defined as [0-9].
      //
      // Technically the standard also allows for `universal-character-name`, with a
      // table of allowed unicode ranges, as well as `other implementation-defined
      // characters`.  We disallow those here to give better error messages, at the
      // expensive of being more restrictive than the standard.
      if (ident[0] != '_' && !IsAlpha(ident[0])) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/main/resources/header.html

                        <ul id="declaring-dependency-versions">
                            <li><a href="../userguide/single_versions.html">Declaring Versions and Ranges</a></li>
                            <li><a href="../userguide/rich_versions.html">Declaring Rich Versions</a></li>
                            <li><a href="../userguide/dynamic_versions.html">Handling Changing Versions</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. src/internal/trace/event.go

    	// describe, so they should only be treated as a best-effort annotation.
    	EventStackSample
    
    	// EventRangeBegin and EventRangeEnd are a pair of generic events representing
    	// a special range of time. Ranges are named and scoped to some resource
    	// (identified via ResourceKind). A range that has begun but has not ended
    	// is considered active.
    	//
    	// EvRangeBegin and EvRangeEnd will share the same name, and an End will always
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      }
    
      /**
       * This test attempts to cause a future to wait for longer than it was requested to from a timed
       * get() call. As measurements of time are prone to flakiness, it tries to assert based on ranges
       * derived from observing how much time actually passed for various operations.
       */
      @SuppressWarnings({"DeprecatedThreadMethods", "ThreadPriorityCheck"})
      @AndroidIncompatible // Thread.suspend
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    			if m.Start <= a && a < m.Limit {
    				l.Mapping = m
    				continue nextLocation
    			}
    		}
    		// Work around legacy handlers failing to encode the first
    		// part of mappings split into adjacent ranges.
    		for _, m := range p.Mapping {
    			if m.Offset != 0 && m.Start-m.Offset <= a && a < m.Start {
    				m.Start -= m.Offset
    				m.Offset = 0
    				l.Mapping = m
    				continue nextLocation
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

      if (!qtype || !qtype.isSigned()) return {};
    
      const int num_bits = qtype.getStorageTypeIntegralWidth();
      // This is a negative value, and will be applied on zero points and fixed
      // point ranges.
      const int64_t offset =
          QType::getDefaultMinimumForInteger(/*isSigned=*/true, num_bits) -
          QType::getDefaultMinimumForInteger(/*isSigned=*/false, num_bits);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

          num_bits =
              static_cast<int>(std::ceil(std::log2(qtype.getStorageTypeMax())));
        }
        // This is a positive value, and will be applied on zero points and fixed
        // point ranges.
        int64_t offset =
            QType::getDefaultMinimumForInteger(/*isSigned=*/false, num_bits) -
            QType::getDefaultMinimumForInteger(/*isSigned=*/true, num_bits);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

      }
    
      /**
       * This test attempts to cause a future to wait for longer than it was requested to from a timed
       * get() call. As measurements of time are prone to flakiness, it tries to assert based on ranges
       * derived from observing how much time actually passed for various operations.
       */
      @SuppressWarnings({"DeprecatedThreadMethods", "ThreadPriorityCheck"})
      @AndroidIncompatible // Thread.suspend
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top