Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 175 for INT32 (0.07 sec)

  1. pkg/apis/autoscaling/v2/zz_generated.conversion.go

    }
    
    func autoConvert_v2_HPAScalingRules_To_autoscaling_HPAScalingRules(in *v2.HPAScalingRules, out *autoscaling.HPAScalingRules, s conversion.Scope) error {
    	out.StabilizationWindowSeconds = (*int32)(unsafe.Pointer(in.StabilizationWindowSeconds))
    	out.SelectPolicy = (*autoscaling.ScalingPolicySelect)(unsafe.Pointer(in.SelectPolicy))
    	out.Policies = *(*[]autoscaling.HPAScalingPolicy)(unsafe.Pointer(&in.Policies))
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 58.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    						slotLoc := state.currentState.slots[slotID]
    						if slotLoc.absent() {
    							startState.Delete(int32(slotID))
    							continue
    						}
    						old := startState.Find(int32(slotID)) // do NOT replace existing values
    						if oldLS, ok := old.(*liveSlot); !ok || oldLS.VarLoc != slotLoc {
    							startState.Insert(int32(slotID),
    								&liveSlot{VarLoc: slotLoc})
    						}
    					}
    					locs.endState = startState
    				}
    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/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	return
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = int32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = int32(length)
    }
    
    //sys   fcntl(fd int, cmd int, arg int) (val int, err error)
    //sys   Flistxattr(fd int, dest []byte) (sz int, err error) = SYS___FLISTXATTR_A
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/v2beta2/zz_generated.conversion.go

    }
    
    func autoConvert_v2beta2_HPAScalingRules_To_autoscaling_HPAScalingRules(in *v2beta2.HPAScalingRules, out *autoscaling.HPAScalingRules, s conversion.Scope) error {
    	out.StabilizationWindowSeconds = (*int32)(unsafe.Pointer(in.StabilizationWindowSeconds))
    	out.SelectPolicy = (*autoscaling.ScalingPolicySelect)(unsafe.Pointer(in.SelectPolicy))
    	out.Policies = *(*[]autoscaling.HPAScalingPolicy)(unsafe.Pointer(&in.Policies))
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 60.9K bytes
    - Viewed (0)
  5. pkg/controller/replicaset/replica_set_test.go

    	expectedPods := int32(0)
    	pods := newPodList(nil, numReplicas, v1.PodPending, labelMap, rsSpec, "pod")
    
    	rsKey, err := controller.KeyFunc(rsSpec)
    	if err != nil {
    		t.Errorf("Couldn't get key for object %#v: %v", rsSpec, err)
    	}
    
    	// Size up the controller, then size it down, and confirm the expected create/delete pattern
    	for _, replicas := range []int32{int32(numReplicas), 0} {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	return abi.Name{Bytes: (*byte)(resolveNameOff(unsafe.Pointer(t), int32(off)))}
    }
    
    func (t *rtype) typeOff(off aTypeOff) *abi.Type {
    	return (*abi.Type)(resolveTypeOff(unsafe.Pointer(t), int32(off)))
    }
    
    func (t *rtype) textOff(off aTextOff) unsafe.Pointer {
    	return resolveTextOff(unsafe.Pointer(t), int32(off))
    }
    
    func textOffFor(t *abi.Type, off aTextOff) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    	// linear insert is ok.
    	for _, e := range x.entries {
    		d.addList(e.ID, e.regs)
    	}
    }
    
    func min32(x, y int32) int32 {
    	if x < y {
    		return x
    	}
    	return y
    }
    func max32(x, y int32) int32 {
    	if x > y {
    		return x
    	}
    	return y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field Port", wireType)
    			}
    			var v int32
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				v |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			m.Port = &v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    			}
    			if iNdEx >= l {
    				return io.ErrUnexpectedEOF
    			}
    			b := dAtA[iNdEx]
    			iNdEx++
    			wire |= uint64(b&0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: BoundObjectReference: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    				return fmt.Errorf("proto: wrong wireType = %d for field Port", wireType)
    			}
    			var v int32
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				v |= int32(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			m.Port = &v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
Back to top