Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cooper (0.18 sec)

  1. src/cmd/cgo/doc.go

    confuse the Go garbage collector; they are sometimes not really
    pointers but data structures encoded in a pointer type. All operations
    on these types must happen in C. The proper constant to initialize an
    empty such reference is 0, not nil.
    
    These special cases were introduced in Go 1.10. For auto-updating code
    from Go 1.9 and earlier, use the cftype or jni rewrites in the Go fix tool:
    
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	LODSL                                   // ad
    	LODSQ                                   // 48ad
    	LODSW                                   // 66ad
    	//TODO: LOOP .+$0x11                    // e211
    	//TODO: LOOPEQ .+$0x11                  // e111
    	//TODO: LOOPNE .+$0x11                  // e011
    	LSLW (BX), DX                           // 660f0313
    	LSLW (R11), DX                          // 66410f0313
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  3. api/go1.21.txt

    pkg debug/elf, const DF_1_NOHDR DynFlag1 #56887
    pkg debug/elf, const DF_1_NOKSYMS = 524288 #56887
    pkg debug/elf, const DF_1_NOKSYMS DynFlag1 #56887
    pkg debug/elf, const DF_1_NOOPEN = 64 #56887
    pkg debug/elf, const DF_1_NOOPEN DynFlag1 #56887
    pkg debug/elf, const DF_1_NORELOC = 4194304 #56887
    pkg debug/elf, const DF_1_NORELOC DynFlag1 #56887
    pkg debug/elf, const DF_1_NOW = 1 #56887
    Plain Text
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    	}
    	n, err := tw.curr.ReadFrom(r)
    	if err != nil && err != ErrWriteTooLong {
    		tw.err = err
    	}
    	return n, err
    }
    
    // Close closes the tar archive by flushing the padding, and writing the footer.
    // If the current file (from a prior call to [Writer.WriteHeader]) is not fully written,
    // then this returns an error.
    func (tw *Writer) Close() error {
    	if tw.err == ErrWriteAfterClose {
    		return nil
    	}
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  5. src/archive/zip/reader.go

    	File          []*File
    	Comment       string
    	decompressors map[uint16]Decompressor
    
    	// Some JAR files are zip files with a prefix that is a bash script.
    	// The baseOffset field is the start of the zip file proper.
    	baseOffset int64
    
    	// fileList is a list of files sorted by ename,
    	// for use by the Open method.
    	fileListOnce sync.Once
    	fileList     []fileListEntry
    }
    
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top