Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 265 for UInt32 (0.12 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		containerPortMappings := kubecontainer.MakePortMappings(&c)
    
    		for idx := range containerPortMappings {
    			port := containerPortMappings[idx]
    			hostPort := int32(port.HostPort)
    			containerPort := int32(port.ContainerPort)
    			protocol := toRuntimeProtocol(port.Protocol)
    			portMappings = append(portMappings, &runtimeapi.PortMapping{
    				HostIp:        port.HostIP,
    				HostPort:      hostPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    type stackObjectRecord struct {
    	// offset in frame
    	// if negative, offset from varp
    	// if non-negative, offset from argp
    	off       int32
    	size      int32
    	_ptrdata  int32  // ptrdata, or -ptrdata is GC prog is used
    	gcdataoff uint32 // offset to gcdata from moduledata.rodata
    }
    
    func (r *stackObjectRecord) useGCProg() bool {
    	return r._ptrdata < 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    			s := hash.Sum32()
    			firstHash := s % uint32(maxIPs)
    			// Check if there is a service with this hash first. If there is no service
    			// at this location - then we can safely assign this position for this service.
    			if hashedServices[firstHash] == nil {
    				hashedServices[firstHash] = svc
    			} else {
    				// This means we have a collision. Resolve collision by "DoubleHashing".
    				i := uint32(1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. src/crypto/tls/ticket.go

    	//               select (SessionState.version) {
    	//                   case VersionTLS10..VersionTLS12: Empty;
    	//                   case VersionTLS13: struct {
    	//                       uint64 use_by;
    	//                       uint32 age_add;
    	//                   };
    	//               };
    	//           };
    	//       };
    	//   } SessionState;
    	//
    
    	// Extra is ignored by crypto/tls, but is encoded by [SessionState.Bytes]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/runtime/tracestack.go

    	}
    	if nstk > 0 && gp.goid == 1 {
    		nstk-- // skip runtime.main
    	}
    	id := trace.stackTab[gen%2].put(pcBuf[:nstk])
    	return id
    }
    
    // traceStackTable maps stack traces (arrays of PC's) to unique uint32 ids.
    // It is lock-free for reading.
    type traceStackTable struct {
    	tab traceMap
    }
    
    // put returns a unique id for the stack trace pcs and caches it in the table,
    // if it sees the trace for the first time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/runtime/trace.go

    	// debugMalloc is the value of debug.malloc before tracing began.
    	debugMalloc bool
    }
    
    // Trace public API.
    
    var (
    	traceAdvanceSema  uint32 = 1
    	traceShutdownSema uint32 = 1
    )
    
    // StartTrace enables tracing for the current process.
    // While tracing, the data will be buffered and available via [ReadTrace].
    // StartTrace returns an error if tracing is already enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. src/text/template/funcs.go

    }
    
    func intLike(typ reflect.Kind) bool {
    	switch typ {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return true
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/internal/poll/fd_unix.go

    	Sysfd int
    
    	// Platform dependent state of the file descriptor.
    	SysFile
    
    	// I/O poller.
    	pd pollDesc
    
    	// Semaphore signaled when file is closed.
    	csema uint32
    
    	// Non-zero if this file has been set to blocking mode.
    	isBlocking uint32
    
    	// Whether this is a streaming descriptor, as opposed to a
    	// packet-based descriptor like a UDP socket. Immutable.
    	IsStream bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/runtime/type.go

    // do not overlap with any compile-time module offsets.
    //
    // Entries are created by reflect.addReflectOff.
    var reflectOffs struct {
    	lock mutex
    	next int32
    	m    map[int32]unsafe.Pointer
    	minv map[unsafe.Pointer]int32
    }
    
    func reflectOffsLock() {
    	lock(&reflectOffs.lock)
    	if raceenabled {
    		raceacquire(unsafe.Pointer(&reflectOffs.lock))
    	}
    }
    
    func reflectOffsUnlock() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    					Labels: map[string]string{
    						"app": "foo",
    					},
    				},
    				Spec: networking.WorkloadEntry{
    					Ports: map[string]uint32{
    						"81":        8180,
    						"82-target": 8280,
    					},
    					Address: "1.2.3.4",
    				},
    			},
    			result: &workloadapi.Workload{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top