Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 213 for UInt32 (0.23 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    bool BoolFromGTestEnv(const char* flag, bool default_val);
    GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val);
    const char* StringFromGTestEnv(const char* flag, const char* default_val);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    func typeToJSON(typeName string) string {
    	switch typeName {
    	case "bool", "*bool":
    		return "boolean"
    	case "uint8", "*uint8", "int", "*int", "int32", "*int32", "int64", "*int64", "uint32", "*uint32", "uint64", "*uint64":
    		return "integer"
    	case "float64", "*float64", "float32", "*float32":
    		return "number"
    	case "metav1.Time", "*metav1.Time":
    		return "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    // chance the file doesn't exist yet.
    var (
    	randN  uint32
    	randmu sync.Mutex
    )
    
    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    // reseed - returns a new seed every time the function is called.
    func reseed() uint32 {
    	return uint32(time.Now().UnixNano() + int64(os.Getpid()))
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        [Net.IPAddress] $IPAddress
      )
    
      $i = 3; $decimal_ip = 0;
      $IPAddress.GetAddressBytes() | % {
        $decimal_ip += $_ * [Math]::Pow(256, $i); $i--
      }
      return [UInt32]$decimal_ip
    }
    
    # TODO(pjh): this is copied from
    # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1#L98.
    # See if there's a way to fetch or construct the "management subnet" so that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		return nil, cleanupAction, fmt.Errorf("create container log directory for container %s failed: %v", container.Name, err)
    	}
    	containerLogsPath := buildContainerLogsPath(container.Name, restartCount)
    	restartCountUint32 := uint32(restartCount)
    	config := &runtimeapi.ContainerConfig{
    		Metadata: &runtimeapi.ContainerMetadata{
    			Name:    container.Name,
    			Attempt: restartCountUint32,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		map[string]string{}, map[string]string{},
    		[]int32{8080}, map[string]string{"test-app": "test-app-1"}, t)
    	createServiceWait(controller, "svc2", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8081}, map[string]string{"test-app": "test-app-2"}, t)
    	createServiceWait(controller, "svc3", "nsA",
    		map[string]string{}, map[string]string{},
    		[]int32{8082}, map[string]string{"test-app": "test-app-3"}, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. src/html/template/exec_test.go

    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    	MI8S     map[int8]string
    	MUI8S    map[uint8]string
    	SMSI     []map[string]int
    	// Empty interfaces; used to see if we can dig inside one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// if sweepgen == h->sweepgen + 3, the span was swept and then cached and is still cached
    	// h->sweepgen is incremented by 2 after every GC
    
    	sweepgen              uint32
    	divMul                uint32        // for divide by elemsize
    	allocCount            uint16        // number of allocated objects
    	spanclass             spanClass     // size class and noscan (uint8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	// Maps
    	MSI      map[string]int
    	MSIone   map[string]int // one element, for deterministic output
    	MSIEmpty map[string]int
    	MXI      map[any]int
    	MII      map[int]int
    	MI32S    map[int32]string
    	MI64S    map[int64]string
    	MUI32S   map[uint32]string
    	MUI64S   map[uint64]string
    	MI8S     map[int8]string
    	MUI8S    map[uint8]string
    	SMSI     []map[string]int
    	// Empty interfaces; used to see if we can dig inside one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    	return []string{}, nil
    }
    
    // Return the first HTTP Connection Manager config for the inbound port
    func getInboundHTTPConnectionManager(cd *configdump.Wrapper, port int32) (*hcm.HttpConnectionManager, error) {
    	filter := istio_envoy_configdump.ListenerFilter{
    		Port: uint32(port),
    	}
    	listeners, err := cd.GetListenerConfigDump()
    	if err != nil {
    		return nil, err
    	}
    
    	for _, l := range listeners.DynamicListeners {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top