Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 222 for 1e23 (0.37 sec)

  1. tests/integration/pilot/testdata/gateway-api-crd.yaml

                    description: |-
                      Hostnames defines a set of hostnames to match against the GRPC
                      Host header to select a GRPCRoute to process the request. This matches
                      the RFC 1123 definition of a hostname with 2 notable exceptions:
    
    
                      1. IPs are not allowed.
                      2. A hostname may be prefixed with a wildcard label (`*.`). The wildcard
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  2. src/math/big/float.go

    			dmin  = 1 - bias - mbits  // -1074  smallest unbiased exponent (denormal)
    			emin  = 1 - bias          // -1022  smallest unbiased exponent (normal)
    			emax  = bias              //  1023  largest unbiased exponent (normal)
    		)
    
    		// Float mantissa m is 0.5 <= m < 1.0; compute exponent e for float64 mantissa.
    		e := x.exp - 1 // exponent for normal mantissa m with 1.0 <= m < 2.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      any applicable header modification configuration) MUST forward this
                      header unmodified to the backend. \n Valid values for Hostnames
                      are determined by RFC 1123 definition of a hostname with 2 notable
                      exceptions: \n 1. IPs are not allowed. 2. A hostname may be prefixed
                      with a wildcard label (`*.`). The wildcard label must appear by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    	}
    	if REG_CR0 <= reg && reg <= REG_CR7 || reg == REG_CR {
    		return C_CREG
    	}
    	if REG_CR0LT <= reg && reg <= REG_CR7SO {
    		return C_CRBIT
    	}
    	if REG_SPR0 <= reg && reg <= REG_SPR0+1023 {
    		switch reg {
    		case REG_LR:
    			return C_LR
    
    		case REG_CTR:
    			return C_CTR
    		}
    
    		return C_SPR
    	}
    	if REG_A0 <= reg && reg <= REG_A7 {
    		return C_AREG
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 🌐 Add Japanese translation for `docs/ja/docs/tutorial/body-fields.md`. PR [#1923](https://github.com/tiangolo/fastapi/pull/1923) by [@SwftAlpc](https://github.com/SwftAlpc).
    * 🌐 Add German translation for `docs/de/docs/tutorial/index.md`. PR [#9502](https://github.com/tiangolo/fastapi/pull/9502) by [@fhabers21](https://github.com/fhabers21).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    // CHECK:           %[[DIVISOR:.*]] = "mhlo.reduce_window"(%[[ALL_ONES]], %[[ZERO]])
    // CHECK-SAME:        padding = dense<{{\[\[}}0, 0], [0, 0], [0, 1], [1, 1]]>
    // CHECK-SAME:        window_dimensions = dense<[1, 1, 2, 3]>
    // CHECK-SAME:        window_strides = dense<[1, 1, 4, 4]>
    // CHECK:           ^bb0(%[[ARG1:.*]]: tensor<f32>, %[[ARG2:.*]]: tensor<f32>):
    // CHECK:             %[[SUM1:.*]] = mhlo.add %[[ARG1]], %[[ARG2]] : tensor<f32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. src/math/all_test.go

    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log2(vflogSC[i]); !alike(logSC[i], f) {
    			t.Errorf("Log2(%g) = %g, want %g", vflogSC[i], f, logSC[i])
    		}
    	}
    	for i := -1074; i <= 1023; i++ {
    		f := Ldexp(1, i)
    		l := Log2(f)
    		if l != float64(i) {
    			t.Errorf("Log2(2**%d) = %g, want %d", i, l, i)
    		}
    	}
    }
    
    func TestModf(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

    - Modify DNS-1123 error messages to indicate that RFC 1123 is not followed exactly ([#94182](https://github.com/kubernetes/kubernetes/pull/94182), [@mattfenwick](https://github.com/mattfenwick)) [SIG API Machinery, Apps, Auth, Network and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    				}
    			}
    		}
    
    		errs = AppendValidation(errs, validateExportTo(cfg.Namespace, serviceEntry.ExportTo, true, false))
    		return errs.Unwrap()
    	})
    
    // ValidatePortName validates a port name to DNS-1123
    func ValidatePortName(name string) error {
    	if !labels.IsDNS1123Label(name) {
    		return fmt.Errorf("invalid port name: %s", name)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
Back to top