Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/sync/atomic/atomic_test.go

    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4))
    	N := int32(1e3)
    	if testing.Short() {
    		N = int32(1e2)
    	}
    	c := make(chan bool, 2)
    	type Data struct {
    		signal int32
    		pad1   [128]int8
    		data1  int32
    		pad2   [128]int8
    		data2  float32
    	}
    	var X Data
    	for p := int32(0); p < 2; p++ {
    		go func(p int32) {
    			for i := int32(1); i < N; i++ {
    				if (i+p)%2 == 0 {
    					X.data1 = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K 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. 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)
  4. 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)
  5. src/cmd/internal/obj/loong64/asm.go

    	case 11: // jmp lbra
    		v := int32(0)
    		if p.To.Target() != nil {
    			v = int32(p.To.Target().Pc-p.Pc) >> 2
    		}
    		o1 = OP_B_BL(c.opirr(p.As), uint32(v))
    		if p.To.Sym == nil {
    			if p.As == AJMP {
    				break
    			}
    			p.To.Sym = c.cursym.Func().Text.From.Sym
    			p.To.Offset = p.To.Target().Pc
    		}
    		rel := obj.Addrel(c.cursym)
    		rel.Off = int32(c.pc)
    		rel.Siz = 4
    		rel.Sym = p.To.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CMPWconst (MOVDconst [x]) [y]) && int32(x)==int32(y) => (FlagEQ)
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)<int32(y)  => (FlagLT)
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)>int32(y)  => (FlagGT)
    
    (CMPconst (MOVDconst [x]) [y]) && x==y => (FlagEQ)
    (CMPconst (MOVDconst [x]) [y]) && x<y  => (FlagLT)
    (CMPconst (MOVDconst [x]) [y]) && x>y  => (FlagGT)
    
    (CMPWUconst (MOVDconst [x]) [y]) && int32(x)==int32(y)  => (FlagEQ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	}
    	active := int32(len(jobCtx.activePods))
    	newSucceededPods, newFailedPods := getNewFinishedPods(jobCtx)
    	jobCtx.succeeded = job.Status.Succeeded + int32(len(newSucceededPods)) + int32(len(jobCtx.uncounted.succeeded))
    	jobCtx.failed = job.Status.Failed + int32(nonIgnoredFailedPodsCount(jobCtx, newFailedPods)) + int32(len(jobCtx.uncounted.failed))
    	ready := ptr.To(countReadyPods(jobCtx.activePods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	negPriority, lowPriority, midPriority, highPriority, veryHighPriority = int32(-100), int32(0), int32(100), int32(1000), int32(10000)
    
    	smallRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "100m",
    		v1.ResourceMemory: "100",
    	}
    	mediumRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "200m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Protocol: protoPtr(v1.ProtocolSCTP),
    					Port:     pointer.Int32(3456),
    				},
    				{
    					Name:     pointer.String("udp-example"),
    					Protocol: protoPtr(v1.ProtocolUDP),
    					Port:     pointer.Int32(161),
    				},
    				{
    					Name:     pointer.String("tcp-example"),
    					Protocol: protoPtr(v1.ProtocolTCP),
    					Port:     pointer.Int32(80),
    				},
    			},
    			expectedEndpoints: []discovery.Endpoint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    					pendingLines.set(vl, int32(b.ID))
    				}
    				f.freeValue(v)
    				continue
    			}
    			if v.Pos.IsStmt() != src.PosNotStmt && !notStmtBoundary(v.Op) && pendingLines.get(vl) == int32(b.ID) {
    				pendingLines.remove(vl)
    				v.Pos = v.Pos.WithIsStmt()
    			}
    			if i != j {
    				b.Values[j] = v
    			}
    			j++
    		}
    		if pendingLines.get(b.Pos) == int32(b.ID) {
    			b.Pos = b.Pos.WithIsStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top