Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 175 for INT32 (0.04 sec)

  1. 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)
  2. src/runtime/mgcpacer.go

    	p := c.idleMarkWorkers.Load()
    	n, max := int32(p&uint64(^uint32(0))), int32(p>>32)
    	return n < max
    }
    
    // removeIdleMarkWorker must be called when a new idle mark worker stops executing.
    func (c *gcControllerState) removeIdleMarkWorker() {
    	for {
    		old := c.idleMarkWorkers.Load()
    		n, max := int32(old&uint64(^uint32(0))), int32(old>>32)
    		if n-1 < 0 {
    			print("n=", n, " max=", max, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	(MOVQstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
    (MOVLstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVLstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
    (MOVWstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVWstoreconst [makeValAndOff(int32(int16(c)),off)] {sym} ptr mem)
    (MOVBstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVBstoreconst [makeValAndOff(int32(int8(c)),off)] {sym} ptr mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/link/internal/ppc64/asm.go

    		o1 &^= 0x3ffff
    		o2 &^= 0x0ffff
    		o1 |= computePrefix34HI(t)
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER_D34:
    		o1 &^= 0x3ffff
    		o2 &^= 0x0ffff
    		o1 |= computePrefix34HI(t)
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER:
    		o1 &^= 0xffff
    		o2 &^= 0xffff
    		o1 |= computeHA(int32(t))
    		o2 |= computeLO(int32(t))
    	case objabi.R_ADDRPOWER_DS:
    		o1 &^= 0xffff
    		o2 &^= 0xfffc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    )
    
    type WorkloadStatus int32
    
    const (
    	// Workload is healthy and ready to serve traffic.
    	WorkloadStatus_HEALTHY WorkloadStatus = 0
    	// Workload is unhealthy and NOT ready to serve traffic.
    	WorkloadStatus_UNHEALTHY WorkloadStatus = 1
    )
    
    // Enum value maps for WorkloadStatus.
    var (
    	WorkloadStatus_name = map[int32]string{
    		0: "HEALTHY",
    		1: "UNHEALTHY",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	elfSym      map[Sym]int32       // stores elf sym symbol property
    	localElfSym map[Sym]int32       // stores "local" elf sym symbol property
    	symPkg      map[Sym]string      // stores package for symbol, or library for shlib-derived syms
    	plt         map[Sym]int32       // stores dynimport for pe objects
    	got         map[Sym]int32       // stores got for pe objects
    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1/zz_generated.conversion.go

    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    	out.ProgressDeadlineSeconds = (*int32)(unsafe.Pointer(in.ProgressDeadlineSeconds))
    	return nil
    }
    
    // Convert_v1_DeploymentSpec_To_apps_DeploymentSpec is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 66.7K bytes
    - Viewed (0)
  9. pkg/apis/apps/v1beta2/zz_generated.conversion.go

    		return err
    	}
    	out.MinReadySeconds = in.MinReadySeconds
    	out.RevisionHistoryLimit = (*int32)(unsafe.Pointer(in.RevisionHistoryLimit))
    	out.Paused = in.Paused
    	out.ProgressDeadlineSeconds = (*int32)(unsafe.Pointer(in.ProgressDeadlineSeconds))
    	return nil
    }
    
    // Convert_v1beta2_DeploymentSpec_To_apps_DeploymentSpec is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:09 UTC 2022
    - 74.2K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils_test.go

    				WhenDeleted: apps.RetainPersistentVolumeClaimRetentionPolicyType,
    			},
    			RevisionHistoryLimit: func() *int32 {
    				limit := int32(2)
    				return &limit
    			}(),
    		},
    	}
    }
    
    func newStatefulSet(replicas int32) *apps.StatefulSet {
    	petMounts := []v1.VolumeMount{
    		{Name: "datadir", MountPath: "/tmp/zookeeper"},
    	}
    	podMounts := []v1.VolumeMount{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
Back to top