Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for content_es (0.26 sec)

  1. src/hash/crc32/crc32.go

    		updateIEEE = func(crc uint32, p []byte) uint32 {
    			return slicingUpdate(crc, ieeeTable8, p)
    		}
    	}
    }
    
    // MakeTable returns a [Table] constructed from the specified polynomial.
    // The contents of this [Table] must not be modified.
    func MakeTable(poly uint32) *Table {
    	switch poly {
    	case IEEE:
    		ieeeOnce.Do(ieeeInit)
    		return IEEETable
    	case Castagnoli:
    		castagnoliOnce.Do(castagnoliInit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    	doc, err := ExtractDoc(content, name)
    	if err != nil {
    		panic(err)
    	}
    	return doc
    }
    
    // ExtractDoc extracts a section of a package doc comment from the
    // provided contents of an analyzer package's doc.go file.
    //
    // A section is a portion of the comment between one heading and
    // the next, using this form:
    //
    //	# Analyzer NAME
    //
    //	NAME: SUMMARY
    //
    //	Full description...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/net/lookup_unix.go

    //go:build unix || js || wasip1
    
    package net
    
    import (
    	"context"
    	"internal/bytealg"
    	"sync"
    )
    
    var onceReadProtocols sync.Once
    
    // readProtocols loads contents of /etc/protocols into protocols map
    // for quick access.
    func readProtocols() {
    	file, err := open("/etc/protocols")
    	if err != nil {
    		return
    	}
    	defer file.close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_overlay.txt

    [cgo] go run ../print_line_comments.go compiled_cgo_sources.txt
    [cgo] stdout $GOPATH[/\\]src[/\\]m[/\\]cgo_hello_replace[/\\]cgo_hello_replace.go
    [cgo] ! stdout $GOPATH[/\\]src[/\\]m[/\\]overlay[/\\]hello.c
    
    # Change the contents of a file in the overlay and ensure that makes the target stale
    env OLD_GOCACHE=$GOCACHE
    env GOCACHE=$WORK/cache  # use a fresh cache so that multiple runs of the test don't interfere
    go build -x -overlay overlay.json ./test_cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  5. src/internal/coverage/encodecounter/encode.go

    }
    
    // CounterVisitorFn describes a callback function invoked when writing
    // coverage counter data.
    type CounterVisitorFn func(pkid uint32, funcid uint32, counters []uint32) error
    
    // Write writes the contents of the count-data file to the writer
    // previously supplied to NewCoverageDataWriter. Returns an error
    // if something went wrong somewhere with the write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/mime/multipart/formdata.go

    		}
    		r := io.NewSectionReader(f, fh.tmpoff, fh.Size)
    		return sectionReadCloser{r, f}, nil
    	}
    	return os.Open(fh.tmpfile)
    }
    
    // File is an interface to access the file part of a multipart message.
    // Its contents may be either stored in memory or on disk.
    // If stored on disk, the File's underlying concrete type will be an *os.File.
    type File interface {
    	io.Reader
    	io.ReaderAt
    	io.Seeker
    	io.Closer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/html/template/attr.go

    package template
    
    import (
    	"strings"
    )
    
    // attrTypeMap[n] describes the value of the given attribute.
    // If an attribute affects (or can mask) the encoding or interpretation of
    // other content, or affects the contents, idempotency, or credentials of a
    // network message, then the value in this map is contentTypeUnsafe.
    // This map is derived from HTML5, specifically
    // https://www.w3.org/TR/html5/Overview.html#attributes-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
Back to top