Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 159 for INT32 (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Lsh32x64 x (Const64 [c])) && uint64(c) < 32 => (SLLconst x [int32(c)])
    (Rsh32x64 x (Const64 [c])) && uint64(c) < 32 => (SRAconst x [int32(c)])
    (Rsh32Ux64 x (Const64 [c])) && uint64(c) < 32 => (SRLconst x [int32(c)])
    (Lsh16x64 x (Const64 [c])) && uint64(c) < 16 => (SLLconst x [int32(c)])
    (Rsh16x64 x (Const64 [c])) && uint64(c) < 16 => (SRAconst (SLLconst <typ.UInt32> x [16]) [int32(c+16)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,8,opt,name=revisionHistoryLimit"`
    
    	// Minimum number of seconds for which a newly created pod should be ready
    	// without any of its container crashing for it to be considered available.
    	// Defaults to 0 (pod will be considered available as soon as it is ready)
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history_test.go

    		}
    	}
    	ss1 := newStatefulSet(3, "ss1", types.UID("ss1"), map[string]string{"foo": "bar"})
    	ss1.Status.CollisionCount = new(int32)
    	ss2 := newStatefulSet(3, "ss2", types.UID("ss2"), map[string]string{"goo": "car"})
    	ss2.Status.CollisionCount = new(int32)
    	ss1Rev1, err := NewControllerRevision(ss1, parentKind, ss1.Spec.Template.Labels, rawTemplate(&ss1.Spec.Template), 1, ss1.Status.CollisionCount)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    // ScaleStatus represents the current status of a scale subresource.
    type ScaleStatus struct {
    	// actual number of observed instances of the scaled object.
    	Replicas int32 `json:"replicas" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    }
    
    func getsockname(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err error) {
    	r1, _, e1 := Syscall(procgetsockname.Addr(), 3, uintptr(s), uintptr(unsafe.Pointer(rsa)), uintptr(unsafe.Pointer(addrlen)))
    	if r1 == socket_error {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func Getsockopt(s Handle, level int32, optname int32, optval *byte, optlen *int32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  6. src/cmd/internal/obj/arm/asm5.go

    	// Store the link to the pool entry in Pool.
    	p.Pool = q
    }
    
    func (c *ctxt5) regoff(a *obj.Addr) int32 {
    	c.instoffset = 0
    	c.aclass(a)
    	return int32(c.instoffset)
    }
    
    func immrot(v uint32) int32 {
    	for i := 0; i < 16; i++ {
    		if v&^0xff == 0 {
    			return int32(uint32(int32(i)<<8) | v | 1<<25)
    		}
    		v = v<<2 | v>>30
    	}
    
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	dc.sync(ctx, pdbName)
    	ps.VerifyPdbStatus(t, pdbName, 0, 1, 2, 10, map[string]metav1.Time{})
    }
    
    func TestScaleResource(t *testing.T) {
    	customResourceUID := uuid.NewUUID()
    	replicas := int32(10)
    	pods := int32(4)
    	maxUnavailable := int32(5)
    
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		map[string]string{}, map[string]string{},
    		[]int32{8080}, map[string]string{"test-app": "test-app-1"}, t)
    	createServiceWait(controller, "svc2", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8081}, map[string]string{"test-app": "test-app-2"}, t)
    	createServiceWait(controller, "svc3", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8082}, map[string]string{"test-app": "test-app-3"}, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    									CacheSize: pointer.Int32(1000),
    								},
    							},
    							{
    								KMS: &apiserver.KMSConfiguration{
    									Name:       "another-kms",
    									APIVersion: "v2",
    									Timeout: &metav1.Duration{
    										Duration: 1 * time.Second,
    									},
    									Endpoint:  "unix:///tmp/anothertestprovider.sock",
    									CacheSize: pointer.Int32(1000),
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    type ScaleSpec struct {
    	// desired number of instances for the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    // represents the current status of a scale subresource.
    type ScaleStatus struct {
    	// actual number of observed instances of the scaled object.
    	Replicas int32 `json:"replicas" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top