Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for abiSel (0.18 sec)

  1. src/cmd/compile/internal/ir/func.go

    	// For ABIs other than this function's definition ABI, the
    	// compiler generates ABI wrapper functions. This is only tracked
    	// within a package.
    	ABIRefs obj.ABISet
    
    	NumDefers  int32 // number of defer calls in the function
    	NumReturns int32 // number of explicit returns in the function
    
    	// NWBRCalls records the LSyms of functions called by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    func abiToVer(abi uint16, localSymVersion int) int {
    	var v int
    	if abi == goobj.SymABIstatic {
    		// Static
    		v = localSymVersion
    	} else if abiver := sym.ABIToVersion(obj.ABI(abi)); abiver != -1 {
    		// Note that data symbols are "ABI0", which maps to version 0.
    		v = abiver
    	} else {
    		log.Fatalf("invalid symbol ABI: %d", abi)
    	}
    	return v
    }
    
    // A list of blocked linknames. Some linknames are allowed only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		nameOptABI := name
    		if strings.Contains(ssaDump, ",") { // ABI specification
    			nameOptABI = ssa.FuncNameABI(name, abiSelf.Which())
    		} else if strings.HasSuffix(ssaDump, ">") { // if they use the linker syntax instead....
    			l := len(ssaDump)
    			if l >= 3 && ssaDump[l-3] == '<' {
    				nameOptABI = ssa.FuncNameABI(name, abiSelf.Which())
    				ssaDump = ssaDump[:l-3] + "," + ssaDump[l-2:l-1]
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AADDME, a1: C_REG, a6: C_REG, type_: 47, size: 4},
    	{as: AEXTSB, a1: C_REG, a6: C_REG, type_: 48, size: 4},
    	{as: AEXTSB, a6: C_REG, type_: 48, size: 4},
    	{as: AISEL, a1: C_U5CON, a2: C_REG, a3: C_REG, a6: C_REG, type_: 84, size: 4},
    	{as: AISEL, a1: C_CRBIT, a2: C_REG, a3: C_REG, a6: C_REG, type_: 84, size: 4},
    	{as: ANEG, a1: C_REG, a6: C_REG, type_: 47, size: 4},
    	{as: ANEG, a6: C_REG, type_: 47, size: 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "topologySpreadConstraints": {
              "description": "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.TopologySpreadConstraint"
              },
              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> overhead = 32;
    
      // TopologySpreadConstraints describes how a group of pods ought to spread across topology
      // domains. Scheduler will schedule pods in a way which abides by the constraints.
      // All topologySpreadConstraints are ANDed.
      // +optional
      // +patchMergeKey=topologyKey
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=topologyKey
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// +optional
    	EnableServiceLinks *bool
    	// TopologySpreadConstraints describes how a group of pods ought to spread across topology
    	// domains. Scheduler will schedule pods in a way which abides by the constraints.
    	// All topologySpreadConstraints are ANDed.
    	// +optional
    	TopologySpreadConstraints []TopologySpreadConstraint
    	// Specifies the OS of the containers in the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"topologySpreadConstraints":     "TopologySpreadConstraints describes how a group of pods ought to spread across topology domains. Scheduler will schedule pods in a way which abides by the constraints. All topologySpreadConstraints are ANDed.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> overhead = 32;
    
      // TopologySpreadConstraints describes how a group of pods ought to spread across topology
      // domains. Scheduler will schedule pods in a way which abides by the constraints.
      // All topologySpreadConstraints are ANDed.
      // +optional
      // +patchMergeKey=topologyKey
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=topologyKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// TopologySpreadConstraints describes how a group of pods ought to spread across topology
    	// domains. Scheduler will schedule pods in a way which abides by the constraints.
    	// All topologySpreadConstraints are ANDed.
    	// +optional
    	// +patchMergeKey=topologyKey
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=topologyKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top