Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for WriteByte (0.66 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	case 'M', 'X':
    		rst.advance(1)
    		rst.implPath()
    		rst.writeByte('<')
    		rst.demangleType()
    		if c == 'X' {
    			rst.writeString(" as ")
    			rst.path(false)
    		}
    		rst.writeByte('>')
    	case 'Y':
    		rst.advance(1)
    		rst.writeByte('<')
    		rst.demangleType()
    		rst.writeString(" as ")
    		rst.path(false)
    		rst.writeByte('>')
    	case 'N':
    		rst.advance(1)
    
    		if len(rst.str) < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/fmt.go

    			tconv2(b, m.Key(), 0, mode, visited)
    			b.WriteByte(']')
    			tconv2(b, m.Elem(), 0, mode, visited)
    			break
    		}
    
    		b.WriteString("struct {")
    		for i, f := range t.Fields() {
    			if i != 0 {
    				b.WriteByte(';')
    			}
    			b.WriteByte(' ')
    			fldconv(b, f, 'L', mode, visited, false)
    		}
    		if t.NumFields() != 0 {
    			b.WriteByte(' ')
    		}
    		b.WriteByte('}')
    
    	case TFORW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    	writeUleb128(ctxt.Out, uint64(len(types)))
    
    	for _, t := range types {
    		ctxt.Out.WriteByte(0x60) // functype
    		writeUleb128(ctxt.Out, uint64(len(t.Params)))
    		for _, v := range t.Params {
    			ctxt.Out.WriteByte(byte(v))
    		}
    		writeUleb128(ctxt.Out, uint64(len(t.Results)))
    		for _, v := range t.Results {
    			ctxt.Out.WriteByte(byte(v))
    		}
    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. statement.go

    			write(v.Raw, v.Alias)
    		}
    	case []clause.Column:
    		writer.WriteByte('(')
    		for idx, d := range v {
    			if idx > 0 {
    				writer.WriteByte(',')
    			}
    			stmt.QuoteTo(writer, d)
    		}
    		writer.WriteByte(')')
    	case clause.Expr:
    		v.Build(stmt)
    	case string:
    		stmt.DB.Dialector.QuoteTo(writer, v)
    	case []string:
    		writer.WriteByte('(')
    		for idx, d := range v {
    			if idx > 0 {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/wasm/wasmobj.go

    	case as < AEnd:
    		w.WriteByte(byte(as - AUnreachable + 0x00))
    	case as < ADrop:
    		w.WriteByte(byte(as - AEnd + 0x0B))
    	case as < ALocalGet:
    		w.WriteByte(byte(as - ADrop + 0x1A))
    	case as < AI32Load:
    		w.WriteByte(byte(as - ALocalGet + 0x20))
    	case as < AI32TruncSatF32S:
    		w.WriteByte(byte(as - AI32Load + 0x28))
    	case as < ALast:
    		w.WriteByte(0xFC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/codehost/codehost.go

    			text.WriteString("; ")
    		}
    		for i, arg := range cmd {
    			if i > 0 {
    				text.WriteByte(' ')
    			}
    			switch {
    			case strings.ContainsAny(arg, "'"):
    				// Quote args that could be mistaken for quoted args.
    				text.WriteByte('"')
    				text.WriteString(bashQuoter.Replace(arg))
    				text.WriteByte('"')
    			case strings.ContainsAny(arg, "$`\\*?[\"\t\n\v\f\r \u0085\u00a0"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                    writeByte(1)
                }
    
                value.hasFixedValue() && sideEffect == null -> {
                    // Can serialize a fixed value and discard the provider
                    // TODO - should preserve information about the source, for diagnostics at execution time
                    writeByte(2)
                    write(value.fixedValue)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env.go

    	return false
    }
    
    func shellQuote(s string) string {
    	var b bytes.Buffer
    	b.WriteByte('\'')
    	for _, x := range []byte(s) {
    		if x == '\'' {
    			// Close the single quoted string, add an escaped single quote,
    			// and start another single quoted string.
    			b.WriteString(`'\''`)
    		} else {
    			b.WriteByte(x)
    		}
    	}
    	b.WriteByte('\'')
    	return b.String()
    }
    
    func batchEscape(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring.go

    }
    
    func (w *typeWriter) byte(b byte) {
    	if w.ctxt != nil {
    		if b == ' ' {
    			b = '#'
    		}
    		w.buf.WriteByte(b)
    		return
    	}
    	w.buf.WriteByte(b)
    	if b == ',' || b == ';' {
    		w.buf.WriteByte(' ')
    	}
    }
    
    func (w *typeWriter) string(s string) {
    	w.buf.WriteString(s)
    }
    
    func (w *typeWriter) error(msg string) {
    	if w.ctxt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/operand.go

    		if x.typ != nil {
    			if isUntyped(x.typ) {
    				buf.WriteString(x.typ.(*Basic).name)
    				buf.WriteByte(' ')
    				break
    			}
    			hasType = true
    		}
    	}
    
    	// <mode>
    	buf.WriteString(operandModeString[x.mode])
    
    	// <val>
    	if x.mode == constant_ {
    		if s := x.val.String(); s != expr {
    			buf.WriteByte(' ')
    			buf.WriteString(s)
    		}
    	}
    
    	// <typ>
    	if hasType {
    		if isValid(x.typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top