Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for content_es (0.1 sec)

  1. src/internal/coverage/stringtab/stringtab.go

    // serialized by a Writer.Write call.
    type Reader struct {
    	r    *slicereader.Reader
    	strs []string
    }
    
    // NewReader creates a stringtab.Reader to read the contents
    // of a string table from 'r'.
    func NewReader(r *slicereader.Reader) *Reader {
    	str := &Reader{
    		r: r,
    	}
    	return str
    }
    
    // Read reads/decodes a string table using the reader provided.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/plugin/plugin_dlopen.go

    //
    //go:linkname doInit runtime.doInit
    func doInit(t []*initTask)
    
    type initTask struct {
    	// fields defined in runtime.initTask. We only handle pointers to an initTask
    	// in this package, so the contents are irrelevant.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 16:55:22 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	flag.BoolVar(&pvaDoGenerate, "generate", false, "regenerates "+pvagenfile)
    	flag.Parse()
    	os.Exit(m.Run())
    
    }
    
    // TestPutVarAbbrevGenerator checks that putvarabbrevgen.go is kept in sync
    // with the contents of functions putvar and putAbstractVar. If test flag -generate
    // is specified the file is regenerated instead.
    //
    // The block of code in putvar and putAbstractVar that picks the correct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/net/http/internal/chunked.go

    }
    
    // Writing to chunkedWriter translates to writing in HTTP chunked Transfer
    // Encoding wire format to the underlying Wire chunkedWriter.
    type chunkedWriter struct {
    	Wire io.Writer
    }
    
    // Write the contents of data as one chunk to Wire.
    // NOTE: Note that the corresponding chunk-writing procedure in Conn.Write has
    // a bug since it does not check for success of [io.WriteString]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/internal/objfile/disasm.go

    type CachedFile struct {
    	FileName string
    	Lines    [][]byte
    }
    
    // FileCache is a simple LRU cache of file contents.
    type FileCache struct {
    	files  *list.List
    	maxLen int
    }
    
    // NewFileCache returns a FileCache which can contain up to maxLen cached file contents.
    func NewFileCache(maxLen int) *FileCache {
    	return &FileCache{
    		files:  list.New(),
    		maxLen: maxLen,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcshared/cshared_test.go

    		if filepath.Ext(dlltoolpath) == "" {
    			// This is an unfortunate workaround for
    			// https://github.com/mstorsjo/llvm-mingw/issues/205 in which
    			// we basically reimplement the contents of the dlltool.sh
    			// wrapper: https://git.io/JZFlU.
    			// TODO(thanm): remove this workaround once we can upgrade
    			// the compilers on the windows-arm64 builder.
    			dlltoolContents, err := os.ReadFile(args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_386.s

    //	unsigned long base_addr;
    //	unsigned int  limit;
    //	unsigned int  seg_32bit:1;
    //	unsigned int  contents:2;
    //	unsigned int  read_exec_only:1;
    //	unsigned int  limit_in_pages:1;
    //	unsigned int  seg_not_present:1;
    //	unsigned int  useable:1;
    // };
    #define SEG_32BIT 0x01
    // contents are the 2 bits 0x02 and 0x04.
    #define CONTENTS_DATA 0x00
    #define CONTENTS_STACK 0x02
    #define CONTENTS_CODE 0x04
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    		fmt.Printf("edge %s->%s\n", e.p, e.b)
    	}
    
    	// Clear state.
    	for _, vid := range e.cachedVals {
    		delete(e.cache, vid)
    	}
    	e.cachedVals = e.cachedVals[:0]
    	for k := range e.contents {
    		delete(e.contents, k)
    	}
    	e.usedRegs = 0
    	e.uniqueRegs = 0
    	e.finalRegs = 0
    	e.rematerializeableRegs = 0
    
    	// Live registers can be sources.
    	for _, x := range srcReg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    ordinary Go string value. The string length, and a pointer to the
    string contents, may be accessed by calling the C functions
    
    	size_t _GoStringLen(_GoString_ s);
    	const char *_GoStringPtr(_GoString_ s);
    
    These functions are only available in the preamble, not in other C
    files. The C code must not modify the contents of the pointer returned
    by _GoStringPtr. Note that the string contents may not have a trailing
    NUL byte.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/internal/zstd/zstd_test.go

    				t.Errorf("got %q want %q", gotstr, test.uncompressed)
    			}
    		})
    	}
    }
    
    var (
    	bigDataOnce  sync.Once
    	bigDataBytes []byte
    	bigDataErr   error
    )
    
    // bigData returns the contents of our large test file repeated multiple times.
    func bigData(t testing.TB) []byte {
    	bigDataOnce.Do(func() {
    		bigDataBytes, bigDataErr = os.ReadFile("../../testdata/Isaac.Newton-Opticks.txt")
    		if bigDataErr == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top