Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for atTerminator (0.14 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

          // If it is requantize op, we shouldn't rewrite this op.
          if (llvm::isa<QuantizeOpT, DequantizeOpT>(quantizing_op)) {
            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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    };
    
    using mhlo::DotDimensionNumbersAttr;
    
    // Replaces `region`'s terminator to TF::Yield.
    void ReplaceReturnOp(Region& region, PatternRewriter& rewriter) {
      OpBuilder::InsertionGuard guard(rewriter);
    
      for (auto& block : region.getBlocks()) {
        Operation* terminator = block.getTerminator();
        auto return_op = llvm::dyn_cast_or_null<mhlo::ReturnOp>(terminator);
        if (return_op == nullptr) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K 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/cmd/link/internal/ld/dwarf.go

    		d.AddString(lsDwsym, dirs[k])
    	}
    	lsu.AddUint8(0) // terminator
    
    	// Emit file section.
    	for k := 0; k < len(files); k++ {
    		d.AddString(lsDwsym, files[k].base)
    		dwarf.Uleb128put(d, lsDwsym, int64(files[k].dir))
    		lsu.AddUint8(0) // mtime
    		lsu.AddUint8(0) // length
    	}
    	lsu.AddUint8(0) // terminator
    }
    
    // writelines collects up and chains together the symbols needed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                     false;
            }
            return fn.emitError("invalid TFLite type: ") << arg.getType(), false;
          }
        }
    
        // Verify that all operations except the terminator have exactly one
        // result of type supported by TFLite (or is a ControlType, which
        // will be removed later by ExtractControlEdges.)
        for (auto& inst : bb) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (2)
  9. 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)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	Type    string
    	Name    string
    	Feature uint32
    	Mask    uint32
    	raw     RawSockaddrALG
    }
    
    func (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	// Leave room for NUL byte terminator.
    	if len(sa.Type) > len(sa.raw.Type)-1 {
    		return nil, 0, EINVAL
    	}
    	if len(sa.Name) > len(sa.raw.Name)-1 {
    		return nil, 0, EINVAL
    	}
    
    	sa.raw.Family = AF_ALG
    	sa.raw.Feat = sa.Feature
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top