Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 213 for UInt32 (0.14 sec)

  1. src/runtime/mgcmark.go

    	work.markrootNext = 0
    	work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
    
    	// Calculate base indexes of each root type
    	work.baseData = uint32(fixedRootCount)
    	work.baseBSS = work.baseData + uint32(work.nDataRoots)
    	work.baseSpans = work.baseBSS + uint32(work.nBSSRoots)
    	work.baseStacks = work.baseSpans + uint32(work.nSpanRoots)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Port the service is reached at (frontend).
    	ServicePort uint32 `protobuf:"varint,1,opt,name=service_port,json=servicePort,proto3" json:"service_port,omitempty"`
    	// Port the service forwards to (backend).
    	TargetPort uint32 `protobuf:"varint,2,opt,name=target_port,json=targetPort,proto3" json:"target_port,omitempty"`
    }
    
    func (x *Port) Reset() {
    	*x = Port{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	}
    
    	// Update size...
    	binary.BigEndian.PutUint32(dst[dataOffset-4:dataOffset], uint32(len(dst)-dataOffset))
    
    	// Add CRC of metadata as fixed size (5 bytes)
    	// Prior to v1.3 this was variable sized.
    	tmp = tmp[:5]
    	tmp[0] = 0xce // muint32
    	binary.BigEndian.PutUint32(tmp[1:], uint32(xxhash.Sum64(dst[dataOffset:])))
    	dst = append(dst, tmp[:5]...)
    	return append(dst, x.data...), nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    		Address:                          util.BuildAddress(le.bind.Primary(), uint32(le.servicePort.Port)),
    		AdditionalAddresses:              util.BuildAdditionalAddresses(le.bind.Extra(), uint32(le.servicePort.Port)),
    		TrafficDirection:                 core.TrafficDirection_OUTBOUND,
    		ContinueOnListenerFiltersTimeout: true,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	c2 := bgetc(f)
    	c3 := bgetc(f)
    	c4 := bgetc(f)
    	f.MustSeek(start, 0)
    
    	unit := &sym.CompilationUnit{Lib: lib}
    	lib.Units = append(lib.Units, unit)
    
    	magic := uint32(c1)<<24 | uint32(c2)<<16 | uint32(c3)<<8 | uint32(c4)
    	if magic == 0x7f454c46 { // \x7F E L F
    		ldelf := func(ctxt *Link, f *bio.Reader, pkg string, length int64, pn string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    			d.newrefattr(fld, dwarf.DW_AT_type, dwhvs)
    			newmemberoffsetattr(fld, abi.MapBucketCount+abi.MapBucketCount*int32(keysize))
    			fld = d.newdie(dwhb, dwarf.DW_ABRV_STRUCTFIELD, "overflow")
    			d.newrefattr(fld, dwarf.DW_AT_type, d.defptrto(d.dtolsym(dwhb.Sym)))
    			newmemberoffsetattr(fld, abi.MapBucketCount+abi.MapBucketCount*(int32(keysize)+int32(valsize)))
    			if d.arch.RegSize > d.arch.PtrSize {
    				fld = d.newdie(dwhb, dwarf.DW_ABRV_STRUCTFIELD, "pad")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		pol := c.(*clientsecurityv1beta1.PeerAuthentication)
    		pol.Spec.Mtls = &auth.PeerAuthentication_MutualTLS{
    			Mode: auth.PeerAuthentication_MutualTLS_PERMISSIVE,
    		}
    		pol.Spec.PortLevelMtls = map[uint32]*auth.PeerAuthentication_MutualTLS{
    			9090: {
    				Mode: auth.PeerAuthentication_MutualTLS_STRICT,
    			},
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	g *g
    
    	// timer is the timer used for the scavenger to sleep.
    	timer *timer
    
    	// sysmonWake signals to sysmon that it should wake the scavenger.
    	sysmonWake atomic.Uint32
    
    	// parked is whether or not the scavenger is parked.
    	parked bool
    
    	// printControllerReset instructs printScavTrace to signal that
    	// the controller was reset.
    	printControllerReset bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pilot/pkg/security/authn/policy_applier_test.go

    								"app": "foo",
    							},
    						},
    						Mtls: &v1beta1.PeerAuthentication_MutualTLS{
    							Mode: v1beta1.PeerAuthentication_MutualTLS_DISABLE,
    						},
    						PortLevelMtls: map[uint32]*v1beta1.PeerAuthentication_MutualTLS{
    							8080: {
    								Mode: v1beta1.PeerAuthentication_MutualTLS_STRICT,
    							},
    						},
    					},
    				},
    			},
    			expected: expectedStrict,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. src/runtime/map.go

    	}
    	// Increment with probability 1/(1<<(h.B-15)).
    	// When we reach 1<<15 - 1, we will have approximately
    	// as many overflow buckets as buckets.
    	mask := uint32(1)<<(h.B-15) - 1
    	// Example: if h.B == 18, then mask == 7,
    	// and rand() & 7 == 0 with probability 1/8.
    	if uint32(rand())&mask == 0 {
    		h.noverflow++
    	}
    }
    
    func (h *hmap) newoverflow(t *maptype, b *bmap) *bmap {
    	var ovf *bmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top