Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,067 for write1 (0.28 sec)

  1. src/encoding/gob/encode.go

    	fieldnum int                  // the last field number written.
    	buf      [1 + uint64Size]byte // buffer used by the encoder; here to avoid allocation.
    	next     *encoderState        // for free list
    }
    
    // encBuffer is an extremely simple, fast implementation of a write-only byte buffer.
    // It never returns a non-nil error, but Write returns an error value so it matches io.Writer.
    type encBuffer struct {
    	data    []byte
    	scratch [64]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. cmd/site-replication-metrics_gen.go

    }
    
    // EncodeMsg implements msgp.Encodable
    func (z RStat) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 2
    	// write "Count"
    	err = en.Append(0x82, 0xa5, 0x43, 0x6f, 0x75, 0x6e, 0x74)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.Count)
    	if err != nil {
    		err = msgp.WrapError(err, "Count")
    		return
    	}
    	// write "Bytes"
    	err = en.Append(0xa5, 0x42, 0x79, 0x74, 0x65, 0x73)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  3. statement.go

    		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 {
    				writer.WriteByte(',')
    			}
    			stmt.DB.Dialector.QuoteTo(writer, d)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                    throw new DictionaryException("Failed to write: " + oldItem + " -> " + item, e);
                }
            }
    
            public void write(final String line) {
                try {
                    writer.write(line);
                    writer.write(Constants.LINE_SEPARATOR);
                } catch (final IOException e) {
                    throw new DictionaryException("Failed to write: " + line, e);
                }
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/runtime/HACKING.md

    for first use, then it must be *zero-initialized* using
    `memclrNoHeapPointers` or non-pointer writes. This does not perform
    write barriers.
    
    If memory is already in a type-safe state and is simply being set to
    the zero value, this must be done using regular writes, `typedmemclr`,
    or `memclrHasPointers`. This performs write barriers.
    
    Runtime-only compiler directives
    ================================
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. cmd/batch-rotate_gen.go

    // EncodeMsg implements msgp.Encodable
    func (z BatchJobKeyRotateEncryption) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 3
    	// write "Type"
    	err = en.Append(0x83, 0xa4, 0x54, 0x79, 0x70, 0x65)
    	if err != nil {
    		return
    	}
    	err = en.WriteString(string(z.Type))
    	if err != nil {
    		err = msgp.WrapError(err, "Type")
    		return
    	}
    	// write "Key"
    	err = en.Append(0xa3, 0x4b, 0x65, 0x79)
    	if err != nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  7. src/net/http/response.go

    // in the response is at least major.minor.
    func (r *Response) ProtoAtLeast(major, minor int) bool {
    	return r.ProtoMajor > major ||
    		r.ProtoMajor == major && r.ProtoMinor >= minor
    }
    
    // Write writes r to w in the HTTP/1.x server response format,
    // including the status line, headers, body, and optional trailer.
    //
    // This method consults the following fields of the response r:
    //
    //	StatusCode
    //	ProtoMajor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    	// it read/write so that the test can still clean it up easily when done.
    	cfg.GOMODCACHE = filepath.Join(dir, "modcache")
    	cfg.ModCacheRW = true
    
    	m.Run()
    	return nil
    }
    
    func testContext(t testing.TB) context.Context {
    	w := newTestWriter(t)
    	return cfg.WithBuildXWriter(context.Background(), w)
    }
    
    // A testWriter is an io.Writer that writes to a test's log.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestOutputStore.java

            public void writeAllOutput(long classId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, 0, true, destination, writer);
            }
    
            public void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, java.io.Writer writer) {
                doRead(classId, 0, false, destination, writer);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/plan.go

    	}
    	_ = tabw.Flush()
    
    	_, _ = printer.Fprintln(writer, "")
    	_, _ = printer.Fprintln(writer, "You can now apply the upgrade by executing the following command:")
    	_, _ = printer.Fprintln(writer, "")
    	_, _ = printer.Fprintf(writer, "\tkubeadm upgrade apply %s%s\n", kubeVersion, unstableVersionFlag)
    	_, _ = printer.Fprintln(writer, "")
    
    	if beforeKubeadmVersion != afterKubeadmVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top