Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for describeTo (0.75 sec)

  1. src/crypto/tls/conn.go

    	hc.incSeq()
    
    	return record, nil
    }
    
    // RecordHeaderError is returned when a TLS record header is invalid.
    type RecordHeaderError struct {
    	// Msg contains a human readable string that describes the error.
    	Msg string
    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    	// Conn provides the underlying net.Conn in the case that a client
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    		}
    	}
    
    	if t.C.Empty() {
    		fatalf("%s: internal error: did not create C name for %s", lineno(pos), dtype)
    	}
    
    	return t
    }
    
    // isStructUnionClass reports whether the type described by the Go syntax x
    // is a struct, union, or class with a tag.
    func isStructUnionClass(x ast.Expr) bool {
    	id, ok := x.(*ast.Ident)
    	if !ok {
    		return false
    	}
    	name := id.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    // values of type Object to ir.Node or a more specific type.
    type Object interface {
    	Pos() src.XPos
    	Sym() *Sym
    	Type() *Type
    }
    
    //go:generate stringer -type Kind -trimprefix T type.go
    
    // Kind describes a kind of type.
    type Kind uint8
    
    const (
    	Txxx Kind = iota
    
    	TINT8
    	TUINT8
    	TINT16
    	TUINT16
    	TINT32
    	TUINT32
    	TINT64
    	TUINT64
    	TINT
    	TUINT
    	TUINTPTR
    
    	TCOMPLEX64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// an ECHRejectionError error will be returned, which may contain a new
    	// ECHConfigList that the server suggests using.
    	//
    	// How this field is parsed may change in future Go versions, if the
    	// encoding described in the final Encrypted Client Hello RFC changes.
    	EncryptedClientHelloConfigList []byte
    
    	// EncryptedClientHelloRejectionVerify, if not nil, is called when ECH is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    }
    
    type Elfstring struct {
    	s   string
    	off int
    }
    
    var elfstr [100]Elfstring
    
    var nelfstr int
    
    var buildinfo []byte
    
    /*
    Initialize the global variable that describes the ELF header. It will be updated as
    we write section and prog headers.
    */
    func Elfinit(ctxt *Link) {
    	ctxt.IsELF = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	MetaUser           map[string]string `json:"MetaUsr,omitempty" msg:"MetaUsr,allownil"`       // Object version metadata set by user
    }
    
    // xlMetaV2Version describes the journal entry, Type defines
    // the current journal entry type other types might be nil based
    // on what Type field carries, it is imperative for the caller
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Both changes could cause script compilation errors. See the https://github.com/gradle/kotlin-dsl-samples/releases/tag/v1.0.2#breaking-changes[Gradle Kotlin DSL release notes] for more information and how to fix builds broken by the changes described above.
    
    Miscellaneous::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	taskID TaskID
    	name   string
    }
    
    // rangeType is a way to classify special ranges of time.
    //
    // These typically correspond 1:1 with "Begin" events, but
    // they may have an optional subtype that describes the range
    // in more detail.
    type rangeType struct {
    	typ  event.Type // "Begin" event.
    	desc stringID   // Optional subtype.
    }
    
    // makeRangeType constructs a new rangeType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    			break
    		}
    		reg := uint8(bits.TrailingZeros64(mask))
    		mask &^= 1 << reg
    
    		storage = append(storage, s.registers[reg].String())
    	}
    	return strings.Join(storage, ",")
    }
    
    // A VarLoc describes the storage for part of a user variable.
    type VarLoc struct {
    	// The registers this variable is available in. There can be more than
    	// one in various situations, e.g. it's being moved between registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // progression of the loop cond computation at runtime with significant
        // overhead.  Specifically, we look for the below pattern and do not cluster
        // in this Identity to avoid the described issue.  Since Identity has low
        // execution cost in native TF, the fact that this heuristic gives up these
        // special Identity nodes as candidates should not harm any performance.  If
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top