Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,817 for Written (0.4 sec)

  1. src/cmd/internal/obj/arm64/doc.go

    Extended registers are written as <Rm>{.<extend>{<<<amount>}}.
    <extend> can be UXTB, UXTH, UXTW, UXTX, SXTB, SXTH, SXTW or SXTX.
    
    Examples:
    
    	ADDS R19.UXTB<<4, R9, R26     <=>    adds x26, x9, w19, uxtb #4
    	ADDSW R14.SXTX, R14, R6       <=>    adds w6, w14, w14, sxtx
    
    Memory references: [<Xn|SP>{,#0}] is written as (Rn|RSP), a base register and an immediate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/ByteSink.java

    import java.io.OutputStream;
    import java.io.OutputStreamWriter;
    import java.io.Writer;
    import java.nio.charset.Charset;
    
    /**
     * A destination to which bytes can be written, such as a file. Unlike an {@link OutputStream}, a
     * {@code ByteSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code OutputStream} instances.
     *
     * <p>{@code ByteSink} provides two kinds of methods:
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/ByteSink.java

    import java.io.OutputStream;
    import java.io.OutputStreamWriter;
    import java.io.Writer;
    import java.nio.charset.Charset;
    
    /**
     * A destination to which bytes can be written, such as a file. Unlike an {@link OutputStream}, a
     * {@code ByteSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code OutputStream} instances.
     *
     * <p>{@code ByteSink} provides two kinds of methods:
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/metrics.cc

    namespace tensorflow {
    namespace metrics {
    
    namespace {
    
    // Counter that tracks total number and `write_version` of SavedModels written.
    auto* saved_model_write_counter = monitoring::Counter<1>::New(
        "/tensorflow/core/saved_model/write/count",
        "The number of SavedModels successfully written.", "write_version");
    
    // Counter that tracks total number and `write_version` of SavedModels read.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/LoggingConfiguration.java

         * Returns the style of logging output that should be written to the console.
         * Defaults to {@link ConsoleOutput#Auto}
         */
        ConsoleOutput getConsoleOutput();
    
        /**
         * Specifies the style of logging output that should be written to the console.
         */
        void setConsoleOutput(ConsoleOutput consoleOutput);
    
        /**
         * Specifies which type of warnings should be written to the console.
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/internal/poll/splice_linux.go

    		if n > 0 {
    			inPipe -= n
    			written += n
    			continue
    		}
    		if err != syscall.EAGAIN {
    			return written, err
    		}
    		if sock.pd.pollable() {
    			if err := sock.pd.waitWrite(sock.isFile); err != nil {
    				return written, err
    			}
    		}
    	}
    	return written, nil
    }
    
    // splice wraps the splice system call. Since the current implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. internal/http/response-recorder.go

    	LogAllBody bool
    
    	TimeToFirstByte time.Duration
    	StartTime       time.Time
    	// number of bytes written
    	bytesWritten int
    	// number of bytes of response headers written
    	headerBytesWritten int
    	// Internal recording buffer
    	headers bytes.Buffer
    	body    bytes.Buffer
    	// Indicate if headers are written in the log
    	headersLogged bool
    }
    
    // Hijack - hijacks the underlying connection
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 00:13:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/html/template/html.go

    			if repl := replacementTable[r]; len(repl) != 0 {
    				if written == 0 {
    					b.Grow(len(s))
    				}
    				b.WriteString(s[written:i])
    				b.WriteString(repl)
    				written = i + w
    			}
    		} else if badRunes {
    			// No-op.
    			// IE does not allow these ranges in unquoted attrs.
    		} else if 0xfdd0 <= r && r <= 0xfdef || 0xfff0 <= r && r <= 0xffff {
    			if written == 0 {
    				b.Grow(len(s))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/mutex_test.go

    }
    
    func TestNoRaceMutexPureHappensBefore(t *testing.T) {
    	var mu sync.Mutex
    	var x int16 = 0
    	_ = x
    	written := false
    	ch := make(chan bool, 2)
    	go func() {
    		x = 1
    		mu.Lock()
    		written = true
    		mu.Unlock()
    		ch <- true
    	}()
    	go func() {
    		time.Sleep(100 * time.Microsecond)
    		mu.Lock()
    		for !written {
    			mu.Unlock()
    			time.Sleep(100 * time.Microsecond)
    			mu.Lock()
    		}
    		mu.Unlock()
    		x = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:14:38 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. src/net/sendfile_windows.go

    func sendFile(fd *netFD, r io.Reader) (written int64, err error, handled bool) {
    	var n int64 = 0 // by default, copy until EOF.
    
    	lr, ok := r.(*io.LimitedReader)
    	if ok {
    		n, r = lr.N, lr.R
    		if n <= 0 {
    			return 0, nil, true
    		}
    	}
    
    	f, ok := r.(*os.File)
    	if !ok {
    		return 0, nil, false
    	}
    
    	written, err = poll.SendFile(&fd.pfd, syscall.Handle(f.Fd()), n)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top