Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 780 for write1 (0.12 sec)

  1. docs/en/docs/img/logo-margin/logo-white-bg.png

    logo-white-bg.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/distpack/pack.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Distpack creates the tgz and zip files for a Go distribution.
    // It writes into GOROOT/pkg/distpack:
    //
    //   - a binary distribution (tgz or zip) for the current GOOS and GOARCH
    //   - a source distribution that is independent of GOOS/GOARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    // Only non-upgrade responses can be written using WriteHeader() and Write().
    // Once Write or WriteHeader is called, Hijack returns an error.
    // Once Hijack is called, Write, WriteHeader, and Hijack return errors.
    type tunnelingResponseWriter struct {
    	// w is used to delegate Header(), WriteHeader(), and Write() calls
    	w http.ResponseWriter
    	// conn is returned from Hijack()
    	conn net.Conn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

            writer.startElement(VERIFY_SIGNATURES);
            writer.write(String.valueOf(configuration.isVerifySignatures()));
            writer.endElement();
        }
    
        private void writeVerifyMetadata(DependencyVerificationConfiguration configuration) throws IOException {
            writer.startElement(VERIFY_METADATA);
            writer.write(String.valueOf(configuration.isVerifyMetadata()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. doc/go_mem.html

    <p>
    Note that if there are no read-write or write-write data races on memory location <i>x</i>,
    then any read <i>r</i> on <i>x</i> has only one possible <i>W</i>(<i>r</i>):
    the single <i>w</i> that immediately precedes it in the happens before order.
    </p>
    
    <p>
    More generally, it can be shown that any Go program that is data-race-free,
    meaning it has no program executions with read-write or write-write data races,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriter.java

                    writer.endElement();
                }
    
                if (options.includeSystemErrLog && outputProvider.has(TestOutputEvent.Destination.StdErr)) {
                    writer.startElement("system-err");
                    writer.startCDATA();
                    outputProvider.write(TestOutputEvent.Destination.StdErr, writer);
                    writer.endCDATA();
                    writer.endElement();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:57 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. cmd/bucket-replication-metrics_gen.go

    }
    
    // EncodeMsg implements msgp.Encodable
    func (z ActiveWorkerStat) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 3
    	// write "Curr"
    	err = en.Append(0x83, 0xa4, 0x43, 0x75, 0x72, 0x72)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.Curr)
    	if err != nil {
    		err = msgp.WrapError(err, "Curr")
    		return
    	}
    	// write "Avg"
    	err = en.Append(0xa3, 0x41, 0x76, 0x67)
    	if err != nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/transform/transform.go

    // via t. It calls Reset on t.
    func NewWriter(w io.Writer, t Transformer) *Writer {
    	t.Reset()
    	return &Writer{
    		w:   w,
    		t:   t,
    		dst: make([]byte, defaultBufSize),
    		src: make([]byte, defaultBufSize),
    	}
    }
    
    // Write implements the io.Writer interface. If there are not enough
    // bytes available to complete a Transform, the bytes will be buffered
    // for the next write. Call Close to convert the remaining bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		return sets.List(unupgradedNodes), nil
    	}
    
    	return nil, nil
    }
    
    // WriteKubeletConfigFiles writes the kubelet config file to disk, but first creates a backup of any existing one.
    func WriteKubeletConfigFiles(cfg *kubeadmapi.InitConfiguration, patchesDir string, dryRun bool, out io.Writer) error {
    	// Set up the kubelet directory to use. If dry-running, this will return a fake directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/BaseEncoding.java

       * {@code Writer}. When the returned {@code OutputStream} is closed, so is the backing {@code
       * Writer}.
       */
      @J2ktIncompatible
      @GwtIncompatible // Writer,OutputStream
      public abstract OutputStream encodingStream(Writer writer);
    
      /**
       * Returns a {@code ByteSink} that writes base-encoded bytes to the specified {@code CharSink}.
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top