Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,558 for vtable (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    Dmitri Shuralyov <******@****.***> 1652737741 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  2. src/internal/trace/base.go

    //
    // We don't just store it as an Event in generation to minimize
    // the amount of pointer data floating around.
    func (s cpuSample) asEvent(table *evTable) Event {
    	// TODO(mknyszek): This is go122-specific, but shouldn't be.
    	// Generalize this in the future.
    	e := Event{
    		table: table,
    		ctx:   s.schedCtx,
    		base: baseEvent{
    			typ:  go122.EvCPUSample,
    			time: s.time,
    		},
    	}
    	e.base.args[0] = uint64(s.stack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/enable-core-dump-annotation.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/scalarmult.go

    	// "mass" of the scalar onto sparse coefficients (meaning
    	// fewer additions).
    
    	basepointNafTable := basepointNafTable()
    	var aTable nafLookupTable5
    	aTable.FromP3(A)
    	// Because the basepoint is fixed, we can use a wider NAF
    	// corresponding to a bigger table.
    	aNaf := a.nonAdjacentForm(5)
    	bNaf := b.nonAdjacentForm(8)
    
    	// Find the first nonzero coefficient.
    	i := 255
    	for j := i; j >= 0; j-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    Wei Xiao <******@****.***> 1500351937 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  6. src/encoding/json/tables.go

    Kevin Burke <******@****.***> 1466959663 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 18:02:34 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    		return curCtx, false, err
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGCBegin(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	seq := ev.args[0]
    	if o.gcState == gcUndetermined {
    		o.gcSeq = seq
    		o.gcState = gcRunning
    		o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    		return curCtx, true, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. .github/workflows/stale.yml

    name: "Stale"
    on:
      schedule:
      - cron: "0 2 * * *"
    
    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 972 bytes
    - Viewed (0)
  9. .github/stale.yml

    # Number of days of inactivity before an Issue or Pull Request becomes stale
    daysUntilStale: 30
    
    # Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
    # Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
    daysUntilClose: 15
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 24 04:36:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. src/debug/dwarf/unit.go

    		}
    		var abbrevOff uint64
    		if u.is64 {
    			abbrevOff = b.uint64()
    		} else {
    			abbrevOff = uint64(b.uint32())
    		}
    		atable, err := d.parseAbbrev(abbrevOff, u.vers)
    		if err != nil {
    			if b.err == nil {
    				b.err = err
    			}
    			break
    		}
    		u.atable = atable
    		if vers < 5 {
    			u.asize = int(b.uint8())
    		}
    
    		switch u.utype {
    		case utSkeleton, utSplitCompile:
    			b.uint64() // unit ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top