Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for content_es (0.16 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/hash/crc64/crc64.go

    	slicing8TableISO = makeSlicingBy8Table(makeTable(ISO))
    	slicing8TableECMA = makeSlicingBy8Table(makeTable(ECMA))
    }
    
    // MakeTable returns a [Table] constructed from the specified polynomial.
    // The contents of this [Table] must not be modified.
    func MakeTable(poly uint64) *Table {
    	buildSlicing8TablesOnce()
    	switch poly {
    	case ISO:
    		return &slicing8TableISO[0]
    	case ECMA:
    		return &slicing8TableECMA[0]
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/io/pipe_test.go

    				t.Errorf("Read() = (%d, %v); want (%d, nil)", n, err, readSize)
    			}
    		}
    
    		// Since each Write is fully gated, if multiple Read calls were needed,
    		// the contents of Write should still appear together in the output.
    		got := string(buf)
    		want := strings.Repeat(input, count)
    		if got != want {
    			t.Errorf("got: %q; want: %q", got, want)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/cache.go

    		old := make([]byte, buf.Len()+1)
    		if n, err := f.ReadAt(old, 0); err == io.EOF && n == buf.Len() && bytes.Equal(buf.Bytes(), old) {
    			return nil // No edit needed.
    		}
    	}
    	// Remove existing contents, so that when we truncate to the actual size it will zero-fill,
    	// and we will be able to detect (some) incomplete writes as files containing trailing NUL bytes.
    	if err := f.Truncate(0); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/os/file.go

    	if e == nil && f.dirinfo.Load() != nil && r != 0 {
    		e = syscall.EISDIR
    	}
    	if e != nil {
    		return 0, f.wrapErr("seek", e)
    	}
    	return r, nil
    }
    
    // WriteString is like Write, but writes the contents of string s rather than
    // a slice of bytes.
    func (f *File) WriteString(s string) (n int, err error) {
    	b := unsafe.Slice(unsafe.StringData(s), len(s))
    	return f.Write(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top