Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for content_es (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    	noteTypeGNUBuildID = 3
    )
    
    // elfNote is the payload of a Note Section in an ELF file.
    type elfNote struct {
    	Name string // Contents of the "name" field, omitting the trailing zero byte.
    	Desc []byte // Contents of the "desc" field.
    	Type uint32 // Contents of the "type" field.
    }
    
    // parseNotes returns the notes from a SHT_NOTE section or PT_NOTE segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/testing/fstest/testfs.go

    // As a special case, if no expected files are listed, fsys must be empty.
    // Otherwise, fsys must contain at least the listed files; it can also contain others.
    // The contents of fsys must not change concurrently with TestFS.
    //
    // If TestFS finds any misbehaviors, it returns either the first error or a
    // list of errors. Use [errors.Is] or [errors.As] to inspect.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticdata/data.go

    		h := notsha256.New()
    		io.WriteString(h, s)
    		symname = fmt.Sprintf(stringSymPattern, len(s), shortHashString(h.Sum(nil)))
    	} else {
    		// Small strings get named directly by their contents.
    		symname = strconv.Quote(s)
    	}
    
    	symdata := base.Ctxt.Lookup(stringSymPrefix + symname)
    	if !symdata.OnList() {
    		off := dstringdata(symdata, 0, s, pos, "string")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/html/template/template.go

    		panic(err)
    	}
    	return t
    }
    
    // ParseFiles creates a new [Template] and parses the template definitions from
    // the named files. The returned template's name will have the (base) name and
    // (parsed) contents of the first file. There must be at least one file.
    // If an error occurs, parsing stops and the returned [*Template] is nil.
    //
    // When parsing multiple files with the same name in different directories,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/shared_test.go

    		if err != nil {
    			t.Errorf("error reading shlibnamefile for %s: %v", pkg, err)
    			continue
    		}
    		contents := strings.TrimSpace(string(contentsb))
    		if contents != soname {
    			t.Errorf("shlibnamefile for %s has wrong contents: %q", pkg, contents)
    		}
    	}
    }
    
    // Is a given offset into the file contained in a loaded segment?
    func isOffsetLoaded(f *elf.File, offset uint64) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  6. src/crypto/x509/verify.go

    	}
    	return msg
    }
    
    func (se SystemRootsError) Unwrap() error { return se.Err }
    
    // errNotParsed is returned when a certificate without ASN.1 contents is
    // verified. Platform-specific verification needs the ASN.1 contents.
    var errNotParsed = errors.New("x509: missing ASN.1 contents; use ParseCertificate")
    
    // VerifyOptions contains parameters for Certificate.Verify.
    type VerifyOptions struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. src/crypto/tls/quic.go

    //
    // The type of event is specified by the Kind field.
    // The contents of the other fields are kind-specific.
    type QUICEvent struct {
    	Kind QUICEventKind
    
    	// Set for QUICSetReadSecret, QUICSetWriteSecret, and QUICWriteData.
    	Level QUICEncryptionLevel
    
    	// Set for QUICTransportParameters, QUICSetReadSecret, QUICSetWriteSecret, and QUICWriteData.
    	// The contents are owned by crypto/tls, and are valid until the next NextEvent call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/debug/macho/file.go

    	// If a client wants Read and Seek it must use
    	// Open() to avoid fighting over the seek offset
    	// with other clients.
    	io.ReaderAt
    	sr *io.SectionReader
    }
    
    // Data reads and returns the contents of the segment.
    func (s *Segment) Data() ([]byte, error) {
    	return saferio.ReadDataAt(s.sr, s.Filesz, 0)
    }
    
    // Open returns a new ReadSeeker reading the segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if err != nil {
    		object = nil
    	}
    	sp.objects[m.File] = object // Cache even on error.
    	return object
    }
    
    // makeWebListLine returns the contents of a single line in a web listing. This includes
    // the source line and the corresponding assembly.
    func makeWebListLine(lineNo int, flat, cum int64, lineContents string,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. src/cmd/trace/goroutines.go

      let params = new URLSearchParams(window.location.search);
      params.set(key, value);
      window.location.search = params.toString();
    }
    </script>
    
    <h1>Goroutines</h1>
    
    Table of contents
    <ul>
    	<li><a href="#summary">Summary</a></li>
    	<li><a href="#breakdown">Breakdown</a></li>
    	<li><a href="#ranges">Special ranges</a></li>
    </ul>
    
    <h3 id="summary">Summary</h3>
    
    <table class="summary">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top