Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for ver120 (0.28 sec)

  1. src/debug/gosym/symtab_test.go

    		sym     Sym
    		pkgName string
    	}{
    		{Sym{goVersion: ver120, Name: "type:.eq.[9]debug/elf.intName"}, ""},
    		{Sym{goVersion: ver120, Name: "type:.hash.debug/elf.ProgHeader"}, ""},
    		{Sym{goVersion: ver120, Name: "type:.eq.runtime._panic"}, ""},
    		{Sym{goVersion: ver120, Name: "type:.hash.struct { runtime.gList; runtime.n int32 }"}, ""},
    		{Sym{goVersion: ver120, Name: "go:(*struct { sync.Mutex; math/big.table [64]math/big"}, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/debug/gosym/pclntab.go

     */
    
    package gosym
    
    import (
    	"bytes"
    	"encoding/binary"
    	"sort"
    	"sync"
    )
    
    // version of the pclntab
    type version int
    
    const (
    	verUnknown version = iota
    	ver11
    	ver12
    	ver116
    	ver118
    	ver120
    )
    
    // A LineTable is a data structure mapping program counters to line numbers.
    //
    // In Go 1.1 and earlier, each function (represented by a [Func]) had its own LineTable,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. src/debug/gosym/symtab.go

    	// they do not belong to any package.
    	//
    	// See cmd/compile/internal/base/link.go:ReservedImports variable.
    	if s.goVersion >= ver120 && (strings.HasPrefix(name, "go:") || strings.HasPrefix(name, "type:")) {
    		return ""
    	}
    
    	// For go1.18 and below, the prefix are "type." and "go." instead.
    	if s.goVersion <= ver118 && (strings.HasPrefix(name, "go.") || strings.HasPrefix(name, "type.")) {
    		return ""
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/avx_optabs.go

    		avxEscape | vex128 | vex66 | vex0F | vexW0, 0x91,
    		avxEscape | vex128 | vex66 | vex0F | vexW0, 0x93,
    		avxEscape | vex128 | vex66 | vex0F | vexW0, 0x90,
    		avxEscape | vex128 | vex66 | vex0F | vexW0, 0x92,
    	}},
    	{as: AKMOVD, ytab: _ykmovb, prefix: Pavx, op: opBytes{
    		avxEscape | vex128 | vex66 | vex0F | vexW1, 0x91,
    		avxEscape | vex128 | vexF2 | vex0F | vexW0, 0x93,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				nonresourceRequest("verb1").URL("/foo/baz/one").New(): true,
    				nonresourceRequest("verb2").URL("/foo").New():         false,
    				nonresourceRequest("verb2").URL("/foo/bar").New():     false,
    				nonresourceRequest("verb2").URL("/foo/baz").New():     false,
    				nonresourceRequest("verb2").URL("/foo/bar/one").New(): false,
    				nonresourceRequest("verb2").URL("/foo/baz/one").New(): false,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  6. src/debug/gosym/pclntab_test.go

    		for i := 0; i < b.N; i++ {
    			var f *Func
    			var pc uint64
    			pc, f, err = tab.LineToPC("/tmp/hello.go", 3)
    			if err != nil {
    				b.Fatal(err)
    			}
    			if pcln.version != ver12 {
    				b.Fatalf("want version=%d, got %d", ver12, pcln.version)
    			}
    			if pc != 0x105c280 {
    				b.Fatalf("want pc=0x105c280, got 0x%x", pc)
    			}
    			if f.Name != "main.main" {
    				b.Fatalf("want name=main.main, got %q", f.Name)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 17:17:44 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. src/runtime/cgo/abi_ppc64x.h

    //
    // On PPC64/ELFv2 targets, the following registers are callee
    // saved when called from C. They must be preserved before
    // calling into Go which does not preserve any of them.
    //
    //	R14-R31
    //	CR2-4
    //	VR20-31
    //	F14-F31
    //
    // xcoff(aix) and ELFv1 are similar, but may only require a
    // subset of these.
    //
    // These macros assume a 16 byte aligned stack pointer. This
    // is required by ELFv1, ELFv2, and AIX PPC64.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

            where:
            vsVersion         | platformToolset
            "15.5.27130.2027" | "v141"
            "14"              | "v140"
            "12"              | "v120"
            "11"              | "v110"
            "10"              | null
        }
    
        private VisualStudioProjectConfiguration configuration(def configName, def platformName, def defines, def includes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.12.md

    - ip-masq-agen has been updated to v2.1.1 ([#67916](https://github.com/kubernetes/kubernetes/pull/67916))
    - [v1.12.0-rc.2](#v1120-rc2)
    - [v1.12.0-rc.1](#v1120-rc1)
    - [v1.12.0-beta.2](#v1120-beta2)
    - [v1.12.0-beta.1](#v1120-beta1)
    - [v1.12.0-alpha.1](#v1120-alpha1)
    
    
    
    # v1.12.0-rc.2
    
    [Documentation](https://docs.k8s.io) & [Examples](https://releases.k8s.io/release-1.12/examples)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.2.md

        - [Other notable changes](#other-notable-changes-5)
    - [v1.2.1](#v121)
      - [Downloads for v1.2.1](#downloads-for-v121)
      - [Changes since v1.2.0](#changes-since-v120)
        - [Other notable changes](#other-notable-changes-6)
    - [v1.2.0](#v120)
      - [Downloads for v1.2.0](#downloads-for-v120)
      - [Changes since v1.1.1](#changes-since-v111)
        - [Major Themes](#major-themes)
        - [Other notable improvements](#other-notable-improvements)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
Back to top