Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 581 for begins (0.3 sec)

  1. src/debug/macho/file.go

    	if c < 0 {
    		return nil, &FormatError{offset, "too many load commands", nil}
    	}
    	f.Loads = make([]Load, 0, c)
    	bo := f.ByteOrder
    	for i := uint32(0); i < f.Ncmd; i++ {
    		// Each load command begins with uint32 command and length.
    		if len(dat) < 8 {
    			return nil, &FormatError{offset, "command block too small", nil}
    		}
    		cmd, siz := LoadCmd(bo.Uint32(dat[0:4])), bo.Uint32(dat[4:8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. cmd/object-api-utils_test.go

    		{"", false},
    		{"a", false},
    		{"ab", false},
    		{".starts-with-a-dot", false},
    		{"ends-with-a-dot.", false},
    		{"ends-with-a-dash-", false},
    		{"-starts-with-a-dash", false},
    		{"THIS-BEGINS-WITH-UPPERCASe", false},
    		{"tHIS-ENDS-WITH-UPPERCASE", false},
    		{"ThisBeginsAndEndsWithUpperCasE", false},
    		{"una ñina", false},
    		{"dash-.may-not-appear-next-to-dot", false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/text/template/doc.go

    When parsing a template, another template may be defined and associated with the
    template being parsed. Template definitions must appear at the top level of the
    template, much like global variables in a Go program.
    
    The syntax of such definitions is to surround each template declaration with a
    "define" and "end" action.
    
    The define action names the template being created by providing a string
    constant. Here is a simple example:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. src/runtime/stubs.go

    // stackArgsSize) according to the ABI.
    //
    // stackRetOffset must be some value <= stackArgsSize that indicates the
    // offset within stackArgs where the return value space begins.
    //
    // frameSize is the total size of the argument frame at stackArgs and must
    // therefore be >= stackArgsSize. It must include additional space for spilling
    // register arguments for stack growth and preemption.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadmacho/ldmacho.go

    const (
    	MACHO_X86_64_RELOC_UNSIGNED = 0
    	MACHO_X86_64_RELOC_SIGNED   = 1
    	MACHO_ARM64_RELOC_ADDEND    = 10
    )
    
    type ldMachoObj struct {
    	f          *bio.Reader
    	base       int64 // off in f where Mach-O begins
    	length     int64 // length of Mach-O
    	is64       bool
    	name       string
    	e          binary.ByteOrder
    	cputype    uint
    	subcputype uint
    	filetype   uint32
    	flags      uint32
    	cmd        []ldMachoCmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  6. src/runtime/profbuf.go

    		// Skip over that and start over at beginning of slice.
    		nd -= len(b.data) - i
    		i = 0
    	}
    	return nd >= want
    }
    
    // write writes an entry to the profiling buffer b.
    // The entry begins with a fixed hdr, which must have
    // length b.hdrsize, followed by a variable-sized stack
    // and a single tag pointer *tagPtr (or nil if tagPtr is nil).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CookieTest.kt

        assertThat(cookie!!.domain).isEqualTo("::1")
      }
    
      /**
       * These public suffixes were selected by inspecting the publicsuffix.org list. It's possible they
       * may change in the future. If this test begins to fail, please double check they are still
       * present in the public suffix list.
       */
      @Test fun domainIsPublicSuffix() {
        val ascii = "https://foo1.foo.bar.elb.amazonaws.com".toHttpUrl()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Cache.kt

         *
         * Next is the response status line, followed by the number of HTTP response header lines,
         * followed by those lines.
         *
         * HTTPS responses also contain SSL session information. This begins with a blank line, and then
         * a line containing the cipher suite. Next is the length of the peer certificate chain. These
         * certificates are base64-encoded and appear each on their own line. The next line contains the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/archive/tar/writer.go

    package tar
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    // Writer provides sequential writing of a tar archive.
    // [Writer.WriteHeader] begins a new file with the provided [Header],
    // and then Writer can be treated as an io.Writer to supply that file's data.
    type Writer struct {
    	w    io.Writer
    	pad  int64      // Amount of padding to write after current file entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    // The methods must be safe for concurrent use by multiple goroutines.
    type ClientOps interface {
    	// ReadRemote reads and returns the content served at the given path
    	// on the remote database server. The path begins with "/lookup" or "/tile/",
    	// and there is no need to parse the path in any way.
    	// It is the implementation's responsibility to turn that path into a full URL
    	// and make the HTTP request. ReadRemote should return an error for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top