Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 97 for Written (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        bool is_read;
        // Is this resource written in any of the regions?
        bool is_written;
        // Is this resource written in all of the regions?
        bool is_written_all;
        // The hoisted read used to replace region reads.
        Value hoisted_read;
        // the type of the data held by the resource.
        Type data_type;
        // For written resources, the result # of the lifted op which will hold the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    				t.Errorf("%s: buf.Flush = %v", context, e)
    			}
    
    			written := w.Bytes()
    			if len(written) != nwrite {
    				t.Errorf("%s: %d bytes written", context, len(written))
    			}
    			for l := 0; l < len(written); l++ {
    				if written[l] != data[l] {
    					t.Errorf("wrong bytes written")
    					t.Errorf("want=%q", data[0:len(written)])
    					t.Errorf("have=%q", written)
    				}
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    		defer xioutil.ODirectPoolLarge.Put(bufp)
    	}
    
    	var written int64
    	if odirectEnabled {
    		written, err = xioutil.CopyAligned(diskHealthWriter(ctx, w), r, *bufp, fileSize, w)
    	} else {
    		written, err = io.CopyBuffer(diskHealthWriter(ctx, w), r, *bufp)
    	}
    	if err != nil {
    		w.Close()
    		return err
    	}
    
    	if written < fileSize && fileSize >= 0 {
    		w.Close()
    		return errLessData
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  4. cmd/erasure-object.go

    		closeBitrotReaders(readers)
    		if err != nil {
    			// If we have successfully written all the content that was asked
    			// by the client, but we still see an error - this would mean
    			// that we have some parts or data blocks missing or corrupted
    			// - attempt a heal to successfully heal them for future calls.
    			if written == partLength {
    				var scan madmin.HealScanMode
    				switch {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    }
    
    func (p *Package) writeOutputFunc(fgcc *os.File, n *Name) {
    	name := n.Mangle
    	if isBuiltin[name] || p.Written[name] {
    		// The builtins are already defined in the C prolog, and we don't
    		// want to duplicate function definitions we've already done.
    		return
    	}
    	p.Written[name] = true
    
    	if *gccgo {
    		p.writeGccgoOutputFunc(fgcc, n)
    		return
    	}
    
    	ctype, _ := p.structType(n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ===== includeSystemOutLog & includeSystemErrLog
    
    The `includeSystemOutLog` option allows configuring whether or not test output written to standard out is exported to the XML report file.
    The `includeSystemErrLog` option allows configuring whether or not test error output written to standard error is exported to the XML report file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	tlsState  *tls.ConnectionState
    	br        *bufio.Reader       // from conn
    	bw        *bufio.Writer       // to conn
    	nwrite    int64               // bytes written
    	reqch     chan requestAndChan // written by roundTrip; read by readLoop
    	writech   chan writeRequest   // written by roundTrip; read by writeLoop
    	closech   chan struct{}       // closed when conn closed
    	isProxy   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    // Generate XCOFF Symbol table.
    // It will be written in out file in Asmbxcoff, because it must be
    // at the very end, especially after relocation sections which needs symbols' index.
    func (f *xcoffFile) asmaixsym(ctxt *Link) {
    	ldr := ctxt.loader
    	// Get correct size for symbols wrapping others symbols like go.string.*
    	// sym.Size can be used directly as the symbols have already been written.
    	for name, size := range outerSymSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // KeyctlDHCompute implements the KEYCTL_DH_COMPUTE command. This command
    // computes a Diffie-Hellman shared secret based on the provide params. The
    // secret is written to the provided buffer and the returned size is the number
    // of bytes written (returning an error if there is insufficient space in the
    // buffer). If a nil buffer is passed in, this function returns the minimum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    //	1nnnnnnn c: repeat the previous n bits c times; c is a varint
    
    // runGCProg returns the number of 1-bit entries written to memory.
    func runGCProg(prog, dst *byte) uintptr {
    	dstStart := dst
    
    	// Bits waiting to be written to memory.
    	var bits uintptr
    	var nbits uintptr
    
    	p := prog
    Run:
    	for {
    		// Flush accumulated full bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top