Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for content_es (0.18 sec)

  1. src/cmd/link/internal/ld/macho_update_uuid.go

    	rv[6] &= 0xcf
    	rv[6] |= 0x30
    	rv[8] &= 0x3f
    	rv[8] |= 0xc0
    
    	return rv
    }
    
    // machoRewriteUuid copies over the contents of the Macho executable
    // exef into the output file outexe, and in the process updates the
    // LC_UUID command to a new value recomputed from the Go build id.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/link/dwarf_test.go

    // command. If LINK_TEST_TOOLEXEC is set, TestMain runs the binary as if it were
    // cmd/link, and otherwise runs the requested tool as a subprocess.
    //
    // This allows the test to verify the behavior of the current contents of the
    // cmd/link package even if the installed cmd/link binary is stale.
    func TestMain(m *testing.M) {
    	if os.Getenv("LINK_TEST_TOOLEXEC") == "" {
    		// Not running as a -toolexec wrapper. Just run the tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. src/image/jpeg/huffman.go

    	x := int32(d.bits.a>>uint8(d.bits.n)) & (s - 1)
    	if x < s>>1 {
    		x += ((-1) << t) + 1
    	}
    	return x, nil
    }
    
    // processDHT processes a Define Huffman Table marker, and initializes a huffman
    // struct from its contents. Specified in section B.2.4.2.
    func (d *decoder) processDHT(n int) error {
    	for n > 0 {
    		if n < 17 {
    			return FormatError("DHT has wrong length")
    		}
    		if err := d.readFull(d.tmp[:17]); err != nil {
    			return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/runtime/mem.go

    }
    
    // sysUnused transitions a memory region from Ready to Prepared. It notifies the
    // operating system that the physical pages backing this memory region are no
    // longer needed and can be reused for other purposes. The contents of a
    // sysUnused memory region are considered forfeit and the region must not be
    // accessed again until sysUsed is called.
    func sysUnused(v unsafe.Pointer, n uintptr) {
    	gcController.mappedReady.Add(-int64(n))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/go/scriptreadme_test.go

    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    well. Thus the example above runs in $WORK/gopath/src with GOPATH=$WORK/gopath
    and $WORK/gopath/src/hello.go containing the listed contents.
    
    {{.Language}}
    
    When TestScript runs a script and the script fails, by default TestScript shows
    the execution of the most recent phase of the script (since the last # comment)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top