Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 222 for 1e23 (0.03 sec)

  1. pilot/pkg/networking/core/envoyfilter/util_test.go

    			input:        nil,
    			replace:      nil,
    			insertBefore: nil,
    			insertAfter:  nil,
    			applied:      false,
    		},
    		{
    			name:         "the first",
    			input:        []int{1, 2, 3},
    			replace:      []int{10, 2, 3},
    			insertBefore: []int{10, 1, 2, 3},
    			insertAfter:  []int{1, 10, 2, 3},
    			applied:      true,
    		},
    		{
    			name:         "the middle",
    			input:        []int{0, 1, 2, 3},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/list9.go

    		return fmt.Sprintf("CR%d%s", crf, bits[r%4])
    	}
    	if REG_A0 <= r && r <= REG_A7 {
    		return fmt.Sprintf("A%d", r-REG_A0)
    	}
    	if r == REG_CR {
    		return "CR"
    	}
    	if REG_SPR0 <= r && r <= REG_SPR0+1023 {
    		switch r {
    		case REG_XER:
    			return "XER"
    
    		case REG_LR:
    			return "LR"
    
    		case REG_CTR:
    			return "CTR"
    		}
    
    		return fmt.Sprintf("SPR(%d)", r-REG_SPR0)
    	}
    
    	if r == REG_FPSCR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 21:12:43 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/crypto/x509/oid_test.go

    	var cases = []struct {
    		oid  OID
    		oid2 OID
    		eq   bool
    	}{
    		{oid: mustNewOIDFromInts(t, []uint64{1, 2, 3}), oid2: mustNewOIDFromInts(t, []uint64{1, 2, 3}), eq: true},
    		{oid: mustNewOIDFromInts(t, []uint64{1, 2, 3}), oid2: mustNewOIDFromInts(t, []uint64{1, 2, 4}), eq: false},
    		{oid: mustNewOIDFromInts(t, []uint64{1, 2, 3}), oid2: mustNewOIDFromInts(t, []uint64{1, 2, 3, 4}), eq: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/syscall/ztypes_aix_ppc64.go

    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [1023]uint8
    }
    
    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [120]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 14:36:41 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  5. pkg/apis/node/types.go

    	// For example, a handler called "runc" might specify that the runc OCI
    	// runtime (using native Linux containers) will be used to run the containers
    	// in a pod.
    	// The Handler must conform to the DNS Label (RFC 1123) requirements, and is
    	// immutable.
    	Handler string
    
    	// overhead represents the resource overhead associated with running a pod for a
    	// given RuntimeClass. For more details, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. docs/en/data/sponsors.yml

        title: "Scalar: Beautiful Open-Source API References from Swagger/OpenAPI files"
        img: https://fastapi.tiangolo.com/img/sponsors/scalar.svg
      - url: https://www.propelauth.com/?utm_source=fastapi&utm_campaign=1223&utm_medium=mainbadge
        title: Auth, user management and more for your B2B product
        img: https://fastapi.tiangolo.com/img/sponsors/propelauth.png
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/validation/generic.go

    	if prefix {
    		name = maskTrailingDash(name)
    	}
    	return validation.IsDNS1123Subdomain(name)
    }
    
    // NameIsDNSLabel is a ValidateNameFunc for names that must be a DNS 1123 label.
    func NameIsDNSLabel(name string, prefix bool) []string {
    	if prefix {
    		name = maskTrailingDash(name)
    	}
    	return validation.IsDNS1123Label(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 03 14:47:11 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/DoubleUtils.java

      // Double#doubleToRawLongBits(double)} spec.
      static final long SIGN_MASK = 0x8000000000000000L;
    
      static final int SIGNIFICAND_BITS = 52;
    
      static final int EXPONENT_BIAS = 1023;
    
      /** The implicit 1 bit that is omitted in significands of normal doubles. */
      static final long IMPLICIT_BIT = SIGNIFICAND_MASK + 1;
    
      static long getSignificand(double d) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:37:52 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go

    	Len      uint8
    	Family   uint8
    	Port     uint16
    	Flowinfo uint32
    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    }
    
    type RawSockaddrUnix struct {
    	Len    uint8
    	Family uint8
    	Path   [1023]uint8
    }
    
    type RawSockaddrDatalink struct {
    	Len    uint8
    	Family uint8
    	Index  uint16
    	Type   uint8
    	Nlen   uint8
    	Alen   uint8
    	Slen   uint8
    	Data   [120]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1/generated.proto

      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The Handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
      // and is immutable.
      optional string handler = 2;
    
      // overhead represents the resource overhead associated with running a pod for a
      // given RuntimeClass. For more details, see
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top