Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for regs (0.15 sec)

  1. src/reflect/value.go

    						offset := add(v.ptr, st.offset, "precomputed value offset")
    						intFromReg(regs, st.ireg, st.size, offset)
    					case abiStepPointer:
    						s := add(v.ptr, st.offset, "precomputed value offset")
    						*((*unsafe.Pointer)(s)) = regs.Ptrs[st.ireg]
    					case abiStepFloatReg:
    						offset := add(v.ptr, st.offset, "precomputed value offset")
    						floatFromReg(regs, st.freg, st.size, offset)
    					case abiStepStack:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "ADDSS", argLength: 2, reg: fp21, asm: "ADDSS", commutative: true, resultInArg0: true},
    		{name: "ADDSD", argLength: 2, reg: fp21, asm: "ADDSD", commutative: true, resultInArg0: true},
    		{name: "SUBSS", argLength: 2, reg: fp21, asm: "SUBSS", resultInArg0: true},
    		{name: "SUBSD", argLength: 2, reg: fp21, asm: "SUBSD", resultInArg0: true},
    		{name: "MULSS", argLength: 2, reg: fp21, asm: "MULSS", commutative: true, resultInArg0: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    		refs, err := deviceMountableVolumePlugin.GetDeviceMountRefs(deviceMountPath)
    
    		if err != nil || util.HasMountRefs(deviceMountPath, refs) {
    			if err == nil {
    				err = fmt.Errorf("the device mount path %q is still mounted by other references %v", deviceMountPath, refs)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    }
    
    func (om *fakeObjectManager) UpdateClaim(claim *v1.PersistentVolumeClaim) error {
    	// Validate ownerRefs.
    	refs := claim.GetOwnerReferences()
    	for _, ref := range refs {
    		if ref.APIVersion == "" || ref.Kind == "" || ref.Name == "" {
    			return fmt.Errorf("invalid ownerRefs: %s %v", claim.Name, refs)
    		}
    	}
    	om.claimsIndexer.Update(claim)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    						ab.asmandsz(ctxt, cursym, p, &p.To, reg[p.GetFrom3().Reg], regrex[p.GetFrom3().Reg], 0)
    						ab.Put1(byte(p.From.Offset))
    
    					case obj.TYPE_REG:
    						switch p.From.Reg {
    						default:
    							goto bad
    
    						case REG_CL, REG_CX:
    							ab.Put2(0x0f, t[1])
    							ab.asmandsz(ctxt, cursym, p, &p.To, reg[p.GetFrom3().Reg], regrex[p.GetFrom3().Reg], 0)
    						}
    					}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    									Methods: []string{"GET", "DELETE"},
    								},
    							},
    						},
    					},
    				},
    			},
    			valid:   true,
    			Warning: false,
    		},
    		{
    			name: "target-refs-good",
    			in: &security_beta.AuthorizationPolicy{
    				Action: security_beta.AuthorizationPolicy_DENY,
    				TargetRefs: []*api.PolicyTargetReference{{
    					Group: gvk.KubernetesGateway.Group,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    // symbol and then direct an indirect call to that value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    capturing (ISTIO_META_DNS_CAPTURE)" }} {{- range $dep, $replace := $deps }} {{- /* Complex logic to turn the string above into a null-safe traversal like ((.Values.global).certificates */}} {{- $res := tpl (print "{{" (repeat (split "." $dep | len) "(") ".Values." (replace "." ")." $dep) ")}}") $}} {{- if not (eq $res "")}} WARNING: {{$dep|quote}} is deprecated; use {{$replace|quote}} instead. {{- end }} {{- end }} {{- $failDeps := dict "telemetry.v2.prometheus.configOverride" "telemetry.v2.stackdriver.configOverride"...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top