Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,154 for write1 (0.28 sec)

  1. releasenotes/notes/concurrent-map-write.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 13 15:23:12 UTC 2024
    - 171 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRulesReporter.java

                writer.write(" ");
                writer.write(input.getType() == null ? "<untyped>" : input.getType());
                if (input.getDescription() != null) {
                    writer.write(" ");
                    writer.write("(");
                    writer.write(input.getDescription());
                    writer.write(")");
                }
                if (!input.isBound()) {
                    writer.write(" ");
                    writer.write("[*]");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    // the length of b is assumed to be 4
    func writeLength(w io.Writer, b []byte, length int) {
    	binary.BigEndian.PutUint32(b, uint32(length))
    	if _, err := w.Write(b); err != nil {
    		panic(err) // Write() on hash never fails
    	}
    }
    
    // toBytes performs unholy acts to avoid allocations
    func toBytes(s string) []byte {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/cmd/internal/gcprog/gcprog.go

    // by calling writeByte for each byte in the program.
    func (w *Writer) Init(writeByte func(byte)) {
    	w.writeByte = writeByte
    }
    
    // Debug causes the writer to print a debugging trace to out
    // during future calls to methods like Ptr, Advance, and End.
    // It also enables debugging checks during the encoding.
    func (w *Writer) Debug(out io.Writer) {
    	w.debug = out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. tools/docker-builder/builder/tar.go

    					return err
    				}
    				return write(path)
    			}); err != nil {
    				return err
    			}
    		} else {
    			if err := write(src); err != nil {
    				return err
    			}
    		}
    	}
    
    	return nil
    }
    
    var WriteTime = time.Time{}
    
    // Writes a raw TAR archive to out, given an fs.FS.
    func WriteArchiveFromFS(base string, fsys fs.FS, out io.Writer, sourceDateEpoch time.Time) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 17:01:46 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/kubelet/config.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/patches"
    )
    
    // WriteConfigToDisk writes the kubelet config object down to a file
    // Used at "kubeadm init" and "kubeadm upgrade" time
    func WriteConfigToDisk(cfg *kubeadmapi.ClusterConfiguration, kubeletDir, patchesDir string, output io.Writer) error {
    	kubeletCfg, ok := cfg.ComponentConfigs[componentconfigs.KubeletGroup]
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/runtime/tracebuf.go

    // we can change it if it's deemed too error-prone.
    type traceWriter struct {
    	traceLocker
    	*traceBuf
    }
    
    // write returns an a traceWriter that writes into the current M's stream.
    func (tl traceLocker) writer() traceWriter {
    	return traceWriter{traceLocker: tl, traceBuf: tl.mp.trace.buf[tl.gen%2]}
    }
    
    // unsafeTraceWriter produces a traceWriter that doesn't lock the trace.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/hash/maphash/maphash.go

    	if h.n == len(h.buf) {
    		h.flush()
    	}
    	h.buf[h.n] = b
    	h.n++
    	return nil
    }
    
    // Write adds b to the sequence of bytes hashed by h.
    // It always writes all of b and never fails; the count and error result are for implementing [io.Writer].
    func (h *Hash) Write(b []byte) (int, error) {
    	size := len(b)
    	// Deal with bytes left over in h.buf.
    	// h.n <= bufSize is always true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/cmd/internal/pgo/serialize.go

    const serializationHeader = "GO PREPROFILE V1\n"
    
    // WriteTo writes a serialized representation of Profile to w.
    //
    // FromSerialized can parse the format back to Profile.
    //
    // WriteTo implements io.WriterTo.Write.
    func (d *Profile) WriteTo(w io.Writer) (int64, error) {
    	bw := bufio.NewWriter(w)
    
    	var written int64
    
    	// Header
    	n, err := bw.WriteString(serializationHeader)
    	written += int64(n)
    	if err != nil {
    		return written, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/net/http/httputil/httputil.go

    }
    
    // NewChunkedWriter returns a new chunkedWriter that translates writes into HTTP
    // "chunked" format before writing them to w. Closing the returned chunkedWriter
    // sends the final 0-length chunk that marks the end of the stream but does
    // not send the final CRLF that appears after trailers; trailers and the last
    // CRLF must be written separately.
    //
    // NewChunkedWriter is not needed by normal applications. The http
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top