Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for xform (0.04 sec)

  1. src/runtime/traceback_system_test.go

    // contain PII) leaking into the telemetry system.
    //
    // (Copied from golang.org/x/telemetry/crashmonitor.parseStackPCs.)
    func parseStackPCs(crash string) ([]uintptr, error) {
    	// getPC parses the PC out of a line of the form:
    	//     \tFILE:LINE +0xRELPC sp=... fp=... pc=...
    	getPC := func(line string) (uint64, error) {
    		_, pcstr, ok := strings.Cut(line, " pc=") // e.g. pc=0x%x
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32.go

    // Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32,
    // checksum. See https://en.wikipedia.org/wiki/Cyclic_redundancy_check for
    // information.
    //
    // Polynomials are represented in LSB-first form also known as reversed representation.
    //
    // See https://en.wikipedia.org/wiki/Mathematics_of_cyclic_redundancy_checks#Reversed_representations_and_reciprocal_polynomials
    // for information.
    package crc32
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/encoding/pem/pem.go

    // certificates. See RFC 1421.
    package pem
    
    import (
    	"bytes"
    	"encoding/base64"
    	"errors"
    	"io"
    	"slices"
    	"strings"
    )
    
    // A Block represents a PEM encoded structure.
    //
    // The encoded form is:
    //
    //	-----BEGIN Type-----
    //	Headers
    //	base64-encoded Bytes
    //	-----END Type-----
    //
    // where [Block.Headers] is a possibly empty sequence of Key: Value lines.
    type Block struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. cmd/metrics-v3-handler.go

    // parameter is provided, no bucket metrics are returned.
    func (h *metricsV3Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	pathComponents := mux.Vars(r)["pathComps"]
    	isListingRequest := r.Form.Has("list")
    
    	buckets := []string{}
    	if strings.HasPrefix(pathComponents, "/bucket/") {
    		// bucket specific metrics, extract the bucket name from the path.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         * abbreviated type `MyString`. The abbreviated type is not `MyList<MyString>`, although it might be rendered as such.
         *
         *
         * ### Transitive expansion
         *
         * Types are always expanded to their final form. That is, if we have a chain of type alias expansions, the [KaType] only represents the
         * final expanded type, and its [abbreviatedType] the initial type alias application. For example:
         *
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/net/interface.go

    	MTU          int          // maximum transmission unit
    	Name         string       // e.g., "en0", "lo0", "eth0.100"
    	HardwareAddr HardwareAddr // IEEE MAC-48, EUI-48 and EUI-64 form
    	Flags        Flags        // e.g., FlagUp, FlagLoopback, FlagMulticast
    }
    
    type Flags uint
    
    const (
    	FlagUp           Flags = 1 << iota // interface is administratively up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package modfile
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    )
    
    // A WorkFile is the parsed, interpreted form of a go.work file.
    type WorkFile struct {
    	Go        *Go
    	Toolchain *Toolchain
    	Godebug   []*Godebug
    	Use       []*Use
    	Replace   []*Replace
    
    	Syntax *FileSyntax
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/LittleEndianByteArray.java

      /**
       * Load 4 bytes from the provided array at the indicated offset.
       *
       * @param source the input bytes
       * @param offset the offset into the array at which to start
       * @return the value found in the array in the form of a long
       */
      static int load32(byte[] source, int offset) {
        // TODO(user): Measure the benefit of delegating this to LittleEndianBytes also.
        return (source[offset] & 0xFF)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/build/relnote/links.go

    		}
    	}
    	if recv != "" {
    		name = recv + "." + name
    	}
    	return pkg, name, true
    }
    
    // The following functions were copied from go/doc/comment/parse.go.
    
    // If text is of the form before.Name, where Name is a capitalized Go identifier,
    // then splitDocName returns before, name, true.
    // Otherwise it returns text, "", false.
    func splitDocName(text string) (before, name string, foundDot bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/internal/trace/resources.go

    	// an (Event).Stack would refer to the stack trace of whoever created the
    	// goroutine.
    	Stack Stack
    
    	// The actual transition data. Stored in a neutral form so that
    	// we don't need fields for every kind of resource.
    	id       int64
    	oldState uint8
    	newState uint8
    }
    
    func goStateTransition(id GoID, from, to GoState) StateTransition {
    	return StateTransition{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top