Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for abiSel (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"field": *stringSchema,
    					},
    				}},
    				applyPatchOperation{
    					"create instance",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "doesnt abide pattern",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"add pattern validation on `field`",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"field": map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    // This function examines the live OpArg{Int,Float}Reg values and
    // synthesizes new (dead) values for the non-live params or the
    // non-live pieces of partially live params.
    func PopulateABIInRegArgOps(f *Func) {
    	pri := f.ABISelf.ABIAnalyzeFuncType(f.Type)
    
    	// When manufacturing new slots that correspond to splits of
    	// composite parameters, we want to avoid creating a new sub-slot
    	// that differs from some existing sub-slot only by type, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. 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)
Back to top