Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for 1000000000 (0.07 sec)

  1. pilot/pkg/xds/testdata/none_cds.json

          "connect_timeout": 1000000000,
          "LbConfig": null
        },
        "PassthroughCluster": {
          "name": "PassthroughCluster",
          "type": 4,
          "connect_timeout": 1000000000,
          "lb_policy": 4,
          "LbConfig": null
        },
        "inbound|7070|tcplocal|s1tcp.none": {
          "name": "inbound|7070|tcplocal|s1tcp.none",
          "connect_timeout": 1000000000,
          "load_assignment": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/none_ecds.json

            "eds_config": {
              "ConfigSourceSpecifier": {
                "Ads": {}
              }
            },
            "service_name": "outbound|2000||s1tcp.none"
          },
          "connect_timeout": 1000000000,
          "circuit_breakers": {
            "thresholds": [
              {
                "max_retries": {
                  "value": 1024
                }
              }
            ]
          },
          "LbConfig": null
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue20232.go

    // license that can be found in the LICENSE file.
    
    package main
    
    const x = 6e5518446744 // ERROR "malformed constant: 6e5518446744"
    const _ = x * x
    const _ = 1e-1000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 05 18:46:43 UTC 2021
    - 375 bytes
    - Viewed (0)
  4. src/runtime/time_windows_arm64.s

    	MUL	R1, R0
    
    	// Code stolen from compiler output for:
    	//
    	//	var x uint64
    	//	func f() (sec uint64, nsec uint32) { return x / 1000000000, uint32(x % 1000000000) }
    	//
    	LSR	$1, R0, R1
    	MOVD	$-8543223759426509416, R2
    	UMULH	R1, R2, R1
    	LSR	$28, R1, R1
    	MOVD	R1, sec+0(FP)
    	MOVD	$1000000000, R2
    	MSUB	R1, R0, R2, R0
    	MOVW	R0, nsec+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 906 bytes
    - Viewed (0)
  5. src/runtime/time_windows_amd64.s

    	SUBQ	DI, AX
    	IMULQ	$100, AX
    
    	// generated code for
    	//	func f(x uint64) (uint64, uint64) { return x/1000000000, x%1000000000 }
    	// adapted to reduce duplication
    	MOVQ	AX, CX
    	MOVQ	$1360296554856532783, AX
    	MULQ	CX
    	ADDQ	CX, DX
    	RCRQ	$1, DX
    	SHRQ	$29, DX
    	MOVQ	DX, sec+0(FP)
    	IMULQ	$1000000000, DX
    	SUBQ	DX, CX
    	MOVL	CX, nsec+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 786 bytes
    - Viewed (0)
  6. src/runtime/sys_plan9_amd64.s

    	MOVQ	0(SP), AX
    
    	// generated code for
    	//	func f(x uint64) (uint64, uint64) { return x/1000000000, x%1000000000 }
    	// adapted to reduce duplication
    	MOVQ	AX, CX
    	MOVQ	$1360296554856532783, AX
    	MULQ	CX
    	ADDQ	CX, DX
    	RCRQ	$1, DX
    	SHRQ	$29, DX
    	MOVQ	DX, sec+0(FP)
    	IMULQ	$1000000000, DX
    	SUBQ	DX, CX
    	MOVL	CX, nsec+8(FP)
    	RET
    
    TEXT runtime·notify(SB),NOSPLIT,$0
    	MOVQ	$28, BP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. cluster/gce/addons/admission-resource-quota-critical-pods/resource-quota.yaml

    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: gcp-critical-pods
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      hard:
        pods: "1000000000"
      scopeSelector:
        matchExpressions:
        - operator : In
          scopeName: PriorityClass
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 13:52:19 UTC 2020
    - 644 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue20583.go

    package issue20583
    
    const (
    	_ = 6e886451608 /* ERROR "malformed constant" */ /2
    	_ = 6e886451608i /* ERROR "malformed constant" */ /2
    	_ = 0 * 1e+1000000000 // ERROR "malformed constant"
    
    	x = 1e100000000
    	_ = x*x*x*x*x*x* /* ERROR "not representable" */ x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 420 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/utils.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types
    
    const BADWIDTH = -1000000000
    
    type bitset8 uint8
    
    func (f *bitset8) set(mask uint8, b bool) {
    	if b {
    		*(*uint8)(f) |= mask
    	} else {
    		*(*uint8)(f) &^= mask
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 09:57:31 UTC 2020
    - 339 bytes
    - Viewed (0)
  10. test/fixedbugs/bug339.go

    // run
    
    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 1608.
    // Size used to be -1000000000.
    
    package main
    
    import "unsafe"
    
    func main() {
    	var a interface{} = 0
    	size := unsafe.Sizeof(a)
    	if size != 2*unsafe.Sizeof((*int)(nil)) {
    		println("wrong size: ", size)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 390 bytes
    - Viewed (0)
Back to top