Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 213 for UInt32 (0.11 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Endpoints: []*networking.WorkloadEntry{
    				{
    					Address: "us.google.com",
    					Ports:   map[string]uint32{"http-port": 7080, "http-alt-port": 18080},
    					Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    				},
    				{
    					Address: "uk.google.com",
    					Ports:   map[string]uint32{"http-port": 1080},
    					Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    	formatLastCheck time.Time
    
    	diskInfoCache *cachevalue.Cache[DiskInfo]
    	sync.RWMutex
    	formatData []byte
    
    	nrRequests   uint64
    	major, minor uint32
    	fsType       string
    
    	immediatePurge chan string
    
    	// mutex to prevent concurrent read operations overloading walks.
    	rotational bool
    	walkMu     *sync.Mutex
    	walkReadMu *sync.Mutex
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    	}
    	p.PodSandboxStatus.Id = strings.ReplaceAll(string(uuid.NewUUID()), "-", "")
    	return p
    }
    
    func makeFakeContainer(sandbox *critest.FakePodSandbox, name string, attempt uint32, terminated bool) *critest.FakeContainer {
    	sandboxID := sandbox.PodSandboxStatus.Id
    	c := &critest.FakeContainer{
    		SandboxID: sandboxID,
    		ContainerStatus: runtimeapi.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    				case 4:
    					min = int64(int32(w.AuxInt) - int32(delta))
    					max = int64(int32(^uint32(0)>>1) - int32(delta))
    
    					vmin = parent.NewValue0I(parent.Pos, OpConst32, parent.Func.Config.Types.Int32, min)
    					vmax = parent.NewValue0I(parent.Pos, OpConst32, parent.Func.Config.Types.Int32, max)
    
    				case 2:
    					min = int64(int16(w.AuxInt) - int16(delta))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/math/all_test.go

    	}
    	GlobalF = x
    }
    
    var roundFloat32 = float32(-2.5)
    
    func BenchmarkFloat32bits(b *testing.B) {
    	y := uint32(0)
    	for i := 0; i < b.N; i++ {
    		y = Float32bits(roundFloat32)
    	}
    	GlobalI = int(y)
    }
    
    var roundUint32 = uint32(5)
    
    func BenchmarkFloat32frombits(b *testing.B) {
    	x := float32(0.0)
    	for i := 0; i < b.N; i++ {
    		x = Float32frombits(roundUint32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	}
    
    	if hc.mac != nil {
    		macSize := hc.mac.Size()
    		if len(payload) < macSize {
    			return nil, 0, alertBadRecordMAC
    		}
    
    		n := len(payload) - macSize - paddingLen
    		n = subtle.ConstantTimeSelect(int(uint32(n)>>31), 0, n) // if n < 0 { n = 0 }
    		record[3] = byte(n >> 8)
    		record[4] = byte(n)
    		remoteMAC := payload[n : n+macSize]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/net/netip/netip_test.go

    			}
    		})
    	}
    
    	var invalidIPs = []string{
    		// Empty string
    		"",
    		// Garbage non-IP
    		"bad",
    		// Single number. Some parsers accept this as an IPv4 address in
    		// big-endian uint32 form, but we don't.
    		"1234",
    		// IPv4 with a zone specifier
    		"1.2.3.4%eth0",
    		// IPv4 field must have at least one digit
    		".1.2.3",
    		"1.2.3.",
    		"1..2.3",
    		// IPv4 address too long
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	CreateSandbox bool
    	// The id of existing sandbox. It is used for starting containers in ContainersToStart.
    	SandboxID string
    	// The attempt number of creating sandboxes for the pod.
    	Attempt uint32
    
    	// The next init container to start.
    	NextInitContainerToStart *v1.Container
    	// InitContainersToStart keeps a list of indexes for the init containers to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	{Value: &Plain{int16(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    	{Value: &Plain{int32(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    	{Value: &Plain{uint(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    	{Value: &Plain{uint8(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    	{Value: &Plain{uint16(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    	{Value: &Plain{uint32(42)}, ExpectXML: `<Plain><V>42</V></Plain>`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    )
    
    // TLS 1.3 PSK Identity. Can be a Session Ticket, or a reference to a saved
    // session. See RFC 8446, Section 4.2.11.
    type pskIdentity struct {
    	label               []byte
    	obfuscatedTicketAge uint32
    }
    
    // TLS Elliptic Curve Point Formats
    // https://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-9
    const (
    	pointFormatUncompressed uint8 = 0
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top