Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 564 for begins (0.56 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/doc/example.go

    func exampleOutput(b *ast.BlockStmt, comments []*ast.CommentGroup) (output string, unordered, ok bool) {
    	if _, last := lastComment(b, comments); last != nil {
    		// test that it begins with the correct prefix
    		text := last.Text()
    		if loc := outputPrefix.FindStringSubmatchIndex(text); loc != nil {
    			if loc[2] != -1 {
    				unordered = true
    			}
    			text = text[loc[1]:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // plain text string of the form "PRIVATE+KEY+<name>+<hash>+<keydata>".
    // Anyone with an encoded signer key can sign messages using that key,
    // so it must be kept secret. The encoding begins with the literal text
    // "PRIVATE+KEY" to avoid confusion with the public server key.
    //
    // The [Sign] function takes as input a Note and a list of Signers
    // and returns an encoded, signed message.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. src/regexp/exec_test.go

    //
    //	strings
    //	"abc"
    //	"123x"
    //	regexps
    //	"[a-z]+"
    //	0-3;0-3
    //	-;-
    //	"([0-9])([0-9])([0-9])"
    //	-;-
    //	-;0-3 0-1 1-2 2-3
    //
    // The stanza begins by defining a set of strings, quoted
    // using Go double-quote syntax, one per line. Then the
    // regexps section gives a sequence of regexps to run on
    // the strings. In the block that follows a regexp, each line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/controller/deployment/deployment_controller.go

    	dc.dListerSynced = dInformer.Informer().HasSynced
    	dc.rsListerSynced = rsInformer.Informer().HasSynced
    	dc.podListerSynced = podInformer.Informer().HasSynced
    	return dc, nil
    }
    
    // Run begins watching and syncing.
    func (dc *DeploymentController) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    
    	// Start events processing pipeline.
    	dc.eventBroadcaster.StartStructuredLogging(3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top