Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 658 for terminator (0.24 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

            return failure();
          }
    
          // If the op is terminator, not quantizable or any ops from the mlir quant
          // ops dialect, we shouldn't rewrite. In case of whole-model verify debug
          // mode, not-quantizable ops should be duplicated to keep parallel
          // float/quant model execution.
          if (quantizing_op->hasTrait<OpTrait::IsTerminator>()) {
            return failure();
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/html/template/escape.go

    			switch c.state {
    			case stateJSBlockCmt:
    				// https://es5.github.io/#x7.4:
    				// "Comments behave like white space and are
    				// discarded except that, if a MultiLineComment
    				// contains a line terminator character, then
    				// the entire comment is considered to be a
    				// LineTerminator for purposes of parsing by
    				// the syntactic grammar."
    				if bytes.ContainsAny(s[written:i1], "\n\r\u2028\u2029") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        // those that are only self-dependent. For `Fetch` op make every resource
        // dependent in any case to ensure that all side-effecting ops in
        // `Graph` feed into `Fetch` (its terminator).
        for (auto& entry : per_resource_access_info_) {
          ResourceId other_id = entry.getFirst();
          if (!op_side_effect_collector_.IsOnlySelfDependent(other_id) ||
              is_fetch_op)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. src/encoding/asn1/asn1.go

    func parseBMPString(bmpString []byte) (string, error) {
    	if len(bmpString)%2 != 0 {
    		return "", errors.New("pkcs12: odd-length BMP string")
    	}
    
    	// Strip terminator if present.
    	if l := len(bmpString); l >= 2 && bmpString[l-1] == 0 && bmpString[l-2] == 0 {
    		bmpString = bmpString[:l-2]
    	}
    
    	s := make([]uint16, 0, len(bmpString)/2)
    	for len(bmpString) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  5. src/net/http/transfer.go

    	if bytes.Equal(buf, singleCRLF) {
    		b.r.Discard(2)
    		return nil
    	}
    	if len(buf) < 2 {
    		return errTrailerEOF
    	}
    	if err != nil {
    		return err
    	}
    
    	// Make sure there's a header terminator coming up, to prevent
    	// a DoS with an unbounded size Trailer. It's not easy to
    	// slip in a LimitReader here, as textproto.NewReader requires
    	// a concrete *bufio.Reader. Also, we can't get all the way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. src/crypto/x509/parser.go

    		}
    		return string(value), nil
    	case cryptobyte_asn1.Tag(asn1.TagBMPString):
    		if len(value)%2 != 0 {
    			return "", errors.New("invalid BMPString")
    		}
    
    		// Strip terminator if present.
    		if l := len(value); l >= 2 && value[l-1] == 0 && value[l-2] == 0 {
    			value = value[:l-2]
    		}
    
    		s := make([]uint16, 0, len(value)/2)
    		for len(value) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/archive/tar/writer_test.go

    		// The prefix field should never appear in the GNU format.
    		var blk block
    		copy(blk[:], b.Bytes())
    		prefix := string(blk.toUSTAR().prefix())
    		prefix, _, _ = strings.Cut(prefix, "\x00") // Truncate at the NUL terminator
    		if blk.getFormat() == FormatGNU && len(prefix) > 0 && strings.HasPrefix(name, prefix) {
    			t.Errorf("test %d, found prefix in GNU format: %s", i, prefix)
    		}
    
    		tr := NewReader(&b)
    		hdr, err := tr.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/flag/flag.go

    called 0, false, etc. You must use the -flag=false form to turn
    off a boolean flag.
    
    Flag parsing stops just before the first non-flag argument
    ("-" is a non-flag argument) or after the terminator "--".
    
    Integer flags accept 1234, 0664, 0x1234 and may be negative.
    Boolean flags may be:
    
    	1, 0, t, f, T, F, true, false, TRUE, FALSE, True, False
    
    Duration flags accept any input valid for time.ParseDuration.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  9. src/internal/fuzz/worker.go

    // it terminates. If the worker doesn't terminate after a short time, stop
    // signals it with os.Interrupt (where supported), then os.Kill.
    //
    // stop returns the error the process terminated with, if any (same as
    // w.waitErr).
    //
    // stop must be called at least once after start returns successfully, even if
    // the worker process terminates unexpectedly.
    func (w *worker) stop() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter.go

    // A cell represents a segment of text terminated by tabs or line breaks.
    // The text itself is stored in a separate buffer; cell only describes the
    // segment's size in bytes, its width in runes, and whether it's an htab
    // ('\t') terminated cell.
    type cell struct {
    	size  int  // cell size in bytes
    	width int  // cell width in runes
    	htab  bool // true if the cell is terminated by an htab ('\t')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top