Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for leaf3 (0.05 sec)

  1. src/cmd/internal/obj/link.go

    func (a *Attribute) CFunc() bool              { return a.load()&AttrCFunc != 0 }
    func (a *Attribute) NoSplit() bool            { return a.load()&AttrNoSplit != 0 }
    func (a *Attribute) Leaf() bool               { return a.load()&AttrLeaf != 0 }
    func (a *Attribute) OnList() bool             { return a.load()&AttrOnList != 0 }
    func (a *Attribute) ReflectMethod() bool      { return a.load()&AttrReflectMethod != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_messages.go

    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				b.AddBytes(cert)
    			})
    			b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    				if i > 0 {
    					// This library only supports OCSP and SCT for leaf certificates.
    					return
    				}
    				if certificate.OCSPStaple != nil {
    					b.AddUint16(extensionStatusRequest)
    					b.AddUint16LengthPrefixed(func(b *cryptobyte.Builder) {
    						b.AddUint8(statusTypeOCSP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      //
      // // Group represents a displayed (sub)tree.
      // interface Group {
      //   name: string;     // Full name of source
      //   src: number;	 // Index in stacks.Sources
      //   self: number;     // Contribution as leaf (may be < 0 for diffs)
      //   sumpos: number;	 // Sum of |self| of positive nodes in tree (>= 0)
      //   sumneg: number;	 // Sum of |self| of negative nodes in tree (>= 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. doc/godebug.md

    using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites).
    
    Go 1.23 changed the behavior of [`tls.X509KeyPair`](/pkg/crypto/tls#X509KeyPair)
    and [`tls.LoadX509KeyPair`](/pkg/crypto/tls#LoadX509KeyPair) to populate the
    Leaf field of the returned [`tls.Certificate`](/pkg/crypto/tls#Certificate).
    This behavior is controlled by the `x509keypairleaf` setting. For Go 1.23, it
    defaults to `x509keypairleaf=1`. Previous versions default to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. cmd/data-scanner.go

    // branch level, and contains link to children branches or leaves.
    //
    // The leaves are "compacted" based on a number of properties.
    // A compacted leaf contains the totals of all files beneath it.
    //
    // A leaf is only scanned once every dataUsageUpdateDirCycles,
    // rarer if the bloom filter for the path is clean and no lifecycles are applied.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	depth used by all pprof profilers except for the CPU profiler to 128 frames.
    	Stack traces that exceed this limit will be truncated to the limit starting
    	from the leaf frame. Setting profstackdepth to any value above 1024 will
    	silently default to 1024. Future versions of Go may remove this limitation
    	and extend profstackdepth to apply to the CPU profiler and execution tracer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    					"If client certificate is invalid or unused, the value will be +INF.",
    				StabilityLevel: metrics.ALPHA,
    			},
    			func() float64 {
    				if c := clientCertificateManager.Current(); c != nil && c.Leaf != nil {
    					return math.Trunc(time.Until(c.Leaf.NotAfter).Seconds())
    				}
    				return math.Inf(1)
    			},
    		))
    
    		// the rotating transport will use the cert from the cert manager instead of these files
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. src/cmd/internal/goobj/objfile.go

    func (s *Sym) Dupok() bool         { return s.Flag()&SymFlagDupok != 0 }
    func (s *Sym) Local() bool         { return s.Flag()&SymFlagLocal != 0 }
    func (s *Sym) Typelink() bool      { return s.Flag()&SymFlagTypelink != 0 }
    func (s *Sym) Leaf() bool          { return s.Flag()&SymFlagLeaf != 0 }
    func (s *Sym) NoSplit() bool       { return s.Flag()&SymFlagNoSplit != 0 }
    func (s *Sym) ReflectMethod() bool { return s.Flag()&SymFlagReflectMethod != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    )
    
    // The code in this file implements stack trace walking for all architectures.
    // The most important fact about a given architecture is whether it uses a link register.
    // On systems with link registers, the prologue for a non-leaf function stores the
    // incoming value of LR at the bottom of the newly allocated stack frame.
    // On systems without link registers (x86), the architecture pushes a return PC during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/runtime/asm_loong64.s

    // the system stack terminates the stack walk (see topofstack()).
    TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0
    	UNDEF
    	JAL	(R1)	// make sure this function is not leaf
    	RET
    
    // func systemstack(fn func())
    TEXT runtime·systemstack(SB), NOSPLIT, $0-8
    	MOVV	fn+0(FP), R19	// R19 = fn
    	MOVV	R19, REGCTXT		// context
    	MOVV	g_m(g), R4	// R4 = m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top