Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 652 for UInt32 (0.12 sec)

  1. pilot/pkg/model/gateway.go

    	gatewayPorts := sets.New[uint32]()
    	nonPlainTextGatewayPortsBindMap := map[uint32]sets.String{}
    	mergedServers := make(map[ServerPort]*MergedServers)
    	mergedQUICServers := make(map[ServerPort]*MergedServers)
    	serverPorts := make([]ServerPort, 0)
    	plainTextServers := make(map[uint32]ServerPort)
    	serversByRouteName := make(map[string][]*networking.Server)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. cmd/metrics-v2_gen.go

    	o = msgp.AppendMapHeader(o, uint32(len(z.Histogram)))
    	for za0005, za0006 := range z.Histogram {
    		o = msgp.AppendString(o, za0005)
    		o = msgp.AppendUint64(o, za0006)
    	}
    	return
    }
    
    // UnmarshalMsg implements msgp.Unmarshaler
    func (z *MetricV2) UnmarshalMsg(bts []byte) (o []byte, err error) {
    	var field []byte
    	_ = field
    	var zb0001 uint32
    	zb0001, bts, err = msgp.ReadMapHeaderBytes(bts)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    	var argsSymTmp, liveSymTmp obj.LSym
    
    	args := bitvec.New(int32(maxArgs / int64(types.PtrSize)))
    	aoff := objw.Uint32(&argsSymTmp, 0, uint32(len(lv.stackMaps))) // number of bitmaps
    	aoff = objw.Uint32(&argsSymTmp, aoff, uint32(args.N))          // number of bits in each bitmap
    
    	locals := bitvec.New(int32(maxLocals / int64(types.PtrSize)))
    	loff := objw.Uint32(&liveSymTmp, 0, uint32(len(lv.stackMaps))) // number of bitmaps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    						g.Expect(localityEndpoint.Priority).To(Equal(uint32(0)))
    						continue
    					}
    					g.Expect(localityEndpoint.Priority).To(Equal(uint32(1)))
    					continue
    				}
    				g.Expect(localityEndpoint.Priority).To(Equal(uint32(2)))
    				continue
    			}
    			if localityEndpoint.Locality.Region == "region2" {
    				g.Expect(localityEndpoint.Priority).To(Equal(uint32(3)))
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    type finblock struct {
    	_       sys.NotInHeap
    	alllink *finblock
    	next    *finblock
    	cnt     uint32
    	_       int32
    	fin     [(_FinBlockSize - 2*goarch.PtrSize - 2*4) / unsafe.Sizeof(finalizer{})]finalizer
    }
    
    var fingStatus atomic.Uint32
    
    // finalizer goroutine status.
    const (
    	fingUninitialized uint32 = iota
    	fingCreated       uint32 = 1 << (iota - 1)
    	fingRunningFinalizer
    	fingWait
    	fingWake
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/encoding/base32/base32.go

    	di, si := 0, 0
    	n := (len(src) / 5) * 5
    	for si < n {
    		// Combining two 32 bit loads allows the same code to be used
    		// for 32 and 64 bit platforms.
    		hi := uint32(src[si+0])<<24 | uint32(src[si+1])<<16 | uint32(src[si+2])<<8 | uint32(src[si+3])
    		lo := hi<<8 | uint32(src[si+4])
    
    		dst[di+0] = enc.encode[(hi>>27)&0x1F]
    		dst[di+1] = enc.encode[(hi>>22)&0x1F]
    		dst[di+2] = enc.encode[(hi>>17)&0x1F]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. cmd/background-newdisks-heal-ops_gen.go

    	o = msgp.AppendArrayHeader(o, uint32(len(z.QueuedBuckets)))
    	for za0001 := range z.QueuedBuckets {
    		o = msgp.AppendString(o, z.QueuedBuckets[za0001])
    	}
    	// string "HealedBuckets"
    	o = append(o, 0xad, 0x48, 0x65, 0x61, 0x6c, 0x65, 0x64, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.HealedBuckets)))
    	for za0002 := range z.HealedBuckets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 17:05:40 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. src/hash/maphash/smhasher_test.go

    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 6)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/lds.go

    	if len(names) == 0 {
    		return nil
    	}
    	var out model.Resources
    	mtlsPolicy := authn.NewMtlsPolicy(push, node.Metadata.Namespace, node.Labels, node.IsWaypointProxy())
    	serviceInstancesByPort := map[uint32]model.ServiceTarget{}
    	for _, si := range node.ServiceTargets {
    		serviceInstancesByPort[si.Port.TargetPort] = si
    	}
    
    	for _, name := range names {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_internal_test.go

    			want: &xdshttpfault.HTTPFault{
    				Abort: &xdshttpfault.FaultAbort{
    					Percentage: &xdstype.FractionalPercent{
    						Numerator:   uint32(50 * 10000),
    						Denominator: xdstype.FractionalPercent_MILLION,
    					},
    					ErrorType: &xdshttpfault.FaultAbort_GrpcStatus{
    						GrpcStatus: uint32(4),
    					},
    				},
    			},
    		},
    		{
    			name: "both delay and abort",
    			fault: &networking.HTTPFaultInjection{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top