Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for INT32 (0.07 sec)

  1. pkg/controller/job/job_controller_test.go

    		fakeExpectationAtCreation int32 // negative: ExpectDeletions, positive: ExpectCreations
    
    		// expectations
    		expectedCreations       int32
    		expectedDeletions       int32
    		expectedActive          int32
    		expectedReady           *int32
    		expectedSucceeded       int32
    		expectedCompletedIdxs   string
    		expectedFailed          int32
    		expectedTerminating     *int32
    		expectedCondition       *batch.JobConditionType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy_test.go

    					BackoffLimitPerIndex: ptr.To[int32](1),
    					MaxFailedIndexes:     ptr.To[int32](1),
    				},
    			},
    			wantJob: batch.Job{
    				ObjectMeta: getValidObjectMeta(1),
    				Spec: batch.JobSpec{
    					Selector:             validSelector,
    					Template:             validPodTemplateSpec,
    					BackoffLimitPerIndex: ptr.To[int32](1),
    					MaxFailedIndexes:     ptr.To[int32](1),
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  3. pkg/apis/batch/validation/validation_test.go

    					Completions:    pointer.Int32(2),
    					Parallelism:    pointer.Int32(100000),
    				},
    			},
    		},
    		"valid parallelism and maxFailedIndexes for high completions when backoffLimitPerIndex is used": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_000),
    					Parallelism:          pointer.Int32(100_000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVHUloadidx ptr (MOVDconst [c]) mem) && is32Bit(c) => (MOVHUload [int32(c)] ptr mem)
    (MOVHUloadidx (MOVDconst [c]) ptr mem) && is32Bit(c) => (MOVHUload [int32(c)] ptr mem)
    (MOVHloadidx  ptr (MOVDconst [c]) mem) && is32Bit(c) => (MOVHload  [int32(c)] ptr mem)
    (MOVHloadidx  (MOVDconst [c]) ptr mem) && is32Bit(c) => (MOVHload  [int32(c)] ptr mem)
    (MOVBUloadidx ptr (MOVDconst [c]) mem) && is32Bit(c) => (MOVBUload [int32(c)] ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	ProviderId        GUID
    	CatalogEntryId    uint32
    	ProtocolChain     WSAProtocolChain
    	Version           int32
    	AddressFamily     int32
    	MaxSockAddr       int32
    	MinSockAddr       int32
    	SocketType        int32
    	Protocol          int32
    	ProtocolMaxOffset int32
    	NetworkByteOrder  int32
    	SecurityScheme    int32
    	MessageSize       uint32
    	ProviderReserved  uint32
    	ProtocolName      [WSAPROTOCOL_LEN + 1]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/generic.rules

    	(Eq32 (Mod32 <typ.Int32> (SignExt8to32 <typ.Int32> x) (Const32 <typ.Int32> [int32(c)])) (Const32 <typ.Int32> [0]))
    (Eq16 (Mod16 x (Const16  [c])) (Const16 [0])) && x.Op != OpConst16 && sdivisibleOK16(c) && !hasSmallRotate(config) =>
    	(Eq32 (Mod32 <typ.Int32> (SignExt16to32 <typ.Int32> x) (Const32 <typ.Int32> [int32(c)])) (Const32 <typ.Int32> [0]))
    
    // Divisibility checks x%c == 0 convert to multiply and rotate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier_test.go

    				ClientIP: &v1.ClientIPConfig{
    					TimeoutSeconds: ptr.To[int32](v1.DefaultClientIPServiceAffinitySeconds),
    				},
    			}
    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:     svcPortName.Port,
    				Port:     int32(svcPort),
    				Protocol: v1.ProtocolTCP,
    				NodePort: int32(svcNodePort),
    			}}
    		}),
    	)
    	fp.syncProxyRules()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:       svcPortName.Port,
    				Port:       int32(svcPort),
    				Protocol:   v1.ProtocolTCP,
    				NodePort:   int32(svcNodePort),
    				TargetPort: intstr.FromInt32(int32(svcPort)),
    			}}
    			svc.Spec.HealthCheckNodePort = int32(svcHealthCheckNodePort)
    			svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    				IP: svcLBIP,
    			}}
    		}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpSelect1)
    		v0 := b.NewValue0(v.Pos, OpMIPSDIV, types.NewTuple(typ.Int32, typ.Int32))
    		v1 := b.NewValue0(v.Pos, OpSignExt16to32, typ.Int32)
    		v1.AddArg(x)
    		v2 := b.NewValue0(v.Pos, OpSignExt16to32, typ.Int32)
    		v2.AddArg(y)
    		v0.AddArg2(v1, v2)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValueMIPS_OpDiv16u(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	{V(float64(88)), V(uint16(88))},
    	{V(int32(89)), V(int32(89))},
    	{V(int32(90)), V(uint32(90))},
    	{V(uint32(91)), V(int32(91))},
    	{V(int32(92)), V(int64(92))},
    	{V(int64(93)), V(int32(93))},
    	{V(int32(94)), V(uint64(94))},
    	{V(uint64(95)), V(int32(95))},
    	{V(int32(96)), V(int(96))},
    	{V(int(97)), V(int32(97))},
    	{V(int32(98)), V(uint(98))},
    	{V(uint(99)), V(int32(99))},
    	{V(int32(100)), V(uintptr(100))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top