Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 134 for RangeTs (0.15 sec)

  1. src/debug/elf/file.go

    		}
    		return b, nil
    	}
    
    	// There are many DWARf sections, but these are the ones
    	// the debug/dwarf package started with.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for i, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    		}
    		b, err := sectionData(i, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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