Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 531 for UInt32 (0.14 sec)

  1. src/runtime/mgc.go

    	// (and thus 8-byte alignment even on 32-bit architectures).
    	bytesMarked uint64
    
    	markrootNext uint32 // next markroot job
    	markrootJobs uint32 // number of markroot jobs
    
    	nproc  uint32
    	tstart int64
    	nwait  uint32
    
    	// Number of roots of various root types. Set by gcMarkRootPrepare.
    	//
    	// nStackRoots == len(stackRoots), but we have nStackRoots for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    		stpos := f.fset.Position(start)
    		enpos := f.fset.Position(end)
    		stpos, enpos = dedup(stpos, enpos)
    		unit := coverage.CoverableUnit{
    			StLine:  uint32(stpos.Line),
    			StCol:   uint32(stpos.Column),
    			EnLine:  uint32(enpos.Line),
    			EnCol:   uint32(enpos.Column),
    			NxStmts: uint32(numStmt),
    		}
    		f.fn.units = append(f.fn.units, unit)
    	} else {
    		stmt = counterStmt(f, fmt.Sprintf("%s.Count[%d]", *varVar,
    			len(f.blocks)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/siginfo_linux.go

    // NOTE fields are exported to be used by TestSiginfoChildLayout.
    type SiginfoChild struct {
    	Signo       int32
    	siErrnoCode                // Two int32 fields, swapped on MIPS.
    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    	(*atomic.Uint32)(p).Store(uint32(value))
    }
    
    func (p *goroutineProfileStateHolder) CompareAndSwap(old, new goroutineProfileState) bool {
    	return (*atomic.Uint32)(p).CompareAndSwap(uint32(old), uint32(new))
    }
    
    func goroutineProfileWithLabelsConcurrent(p []profilerecord.StackRecord, labels []unsafe.Pointer) (n int, ok bool) {
    	if len(p) == 0 {
    		// An empty slice is obviously too small. Return a rough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. cmd/data-usage-cache.go

    // If cycles is 0 false is always returned.
    // If cycles is 1 true is always returned (as expected).
    func (h dataUsageHash) mod(cycle uint32, cycles uint32) bool {
    	if cycles <= 1 {
    		return cycles == 1
    	}
    	return uint32(xxhash.Sum64String(string(h)))%cycles == cycle%cycles
    }
    
    // modAlt returns true if the hash mod cycles == cycle.
    // This is out of sync with mod.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    	container      *v1.Container
    	sandboxAttempt uint32
    	attempt        int
    	createdAt      int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. pilot/pkg/model/service.go

    	// The port that the user provides in the meshNetworks config is the service port.
    	// We translate that to the appropriate node port here.
    	ClusterExternalPorts map[cluster.ID]map[uint32]uint32
    
    	PassthroughTargetPorts map[uint32]uint32
    
    	K8sAttributes
    }
    
    type NamespacedHostname struct {
    	Hostname  host.Name
    	Namespace string
    }
    
    type K8sAttributes struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. src/math/big/float.go

    		}
    	}
    	return z
    }
    
    // msb32 returns the 32 most significant bits of x.
    func msb32(x nat) uint32 {
    	i := len(x) - 1
    	if i < 0 {
    		return 0
    	}
    	if debugFloat && x[i]&(1<<(_W-1)) == 0 {
    		panic("x not normalized")
    	}
    	switch _W {
    	case 32:
    		return uint32(x[i])
    	case 64:
    		return uint32(x[i] >> 32)
    	}
    	panic("unreachable")
    }
    
    // msb64 returns the 64 most significant bits of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages_test.go

    	m := &newSessionTicketMsgTLS13{}
    	m.lifetime = uint32(rand.Intn(500000))
    	m.ageAdd = uint32(rand.Intn(500000))
    	m.nonce = randomBytes(rand.Intn(100), rand)
    	m.label = randomBytes(rand.Intn(1000), rand)
    	if rand.Intn(10) > 5 {
    		m.maxEarlyData = uint32(rand.Intn(500000))
    	}
    	return reflect.ValueOf(m)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	{V(int32(102)), V(float32(102))},
    	{V(float32(103)), V(int32(103))},
    	{V(int32(104)), V(float64(104))},
    	{V(float64(105)), V(int32(105))},
    	{V(uint32(106)), V(uint32(106))},
    	{V(uint32(107)), V(int64(107))},
    	{V(int64(108)), V(uint32(108))},
    	{V(uint32(109)), V(uint64(109))},
    	{V(uint64(110)), V(uint32(110))},
    	{V(uint32(111)), V(int(111))},
    	{V(int(112)), V(uint32(112))},
    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