Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 620 for power9 (0.12 sec)

  1. src/strconv/testdata/testfp.txt

    # input with the given format.
    #
    # The formats are as in C's printf, except that %b means print
    # binary scientific notation: NpE = N x 2^E.
    
    # TODO:
    #	Powers of 10.
    #	Powers of 2.
    #	%.20g versions.
    #	random sources
    #	random targets
    #	random targets ± half a ULP
    
    # Difficult boundary cases, derived from tables given in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.9K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    		semanticRoles.edit.Rules[i] = rule
    	}
    
    	// confirm that the view role doesn't already have extra powers
    	for _, rule := range viewEscalatingNamespaceResources {
    		if covers, _ := validation.Covers(semanticRoles.view.Rules, []rbacv1.PolicyRule{rule}); covers {
    			t.Errorf("view has extra powers: %#v", rule)
    		}
    	}
    	semanticRoles.view.Rules = append(semanticRoles.view.Rules, viewEscalatingNamespaceResources...)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/internal/fuzz/coverage.go

    	cov := coverage()
    	clear(cov)
    }
    
    // SnapshotCoverage copies the current counter values into coverageSnapshot,
    // preserving them for later inspection. SnapshotCoverage also rounds each
    // counter down to the nearest power of two. This lets the coordinator store
    // multiple values for each counter by OR'ing them together.
    func SnapshotCoverage() {
    	cov := coverage()
    	for i, b := range cov {
    		b |= b >> 1
    		b |= b >> 2
    		b |= b >> 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/runtime/sigtab_linux_generic.go

    	/* 27 */ {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
    	/* 28 */ {_SigNotify + _SigIgn, "SIGWINCH: window size change"},
    	/* 29 */ {_SigNotify, "SIGIO: i/o now possible"},
    	/* 30 */ {_SigNotify, "SIGPWR: power failure restart"},
    	/* 31 */ {_SigThrow, "SIGSYS: bad system call"},
    	/* 32 */ {_SigSetStack + _SigUnblock, "signal 32"}, /* SIGCANCEL; see issue 6997 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/arg.go

    //     [31:31] (offset 31, bit count 1) and the register is W for 0 and X for 1.
    //
    // - arg_[s|u]label_FIELDS_POWER:
    //     a program label encoded as "FIELDS" times 2^POWER in the range [MIN, MAX] (determined
    //     by signd/unsigned, FIELDS and POWER), e.g.
    //       arg_slabel_imm14_2
    //       arg_slabel_imm19_2
    //       arg_slabel_imm26_2
    //       arg_slabel_immhi_immlo_0
    //       arg_slabel_immhi_immlo_12
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 20K bytes
    - Viewed (0)
  6. src/testdata/Isaac.Newton-Opticks.txt

    refractive Powers in Proportion to one another as their Densities
    without any considerable Variation. But the refractive Powers of these
    unctuous Substances are two or three Times greater in respect of their
    Densities than the refractive Powers of the former Substances in respect
    of theirs.
    
    Water has a refractive Power in a middle degree between those two sorts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    distance of 12 or 18 Feet, so that I could not discern the Unevenness of the Surface of the Powder, nor the little Shadows let fall from the gritty Particles thereof; the Powder appeared intensely white, so as to transcend even the Paper it self in Whiteness, especially if the Paper were a little shaded from the Light of the Clouds, and then the Paper compared with the Powder appeared of such a grey Colour as the Powder had done before. But by laying the Paper where the Sun shines through the Glass of the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf_test_pass.cc

    namespace mlir {
    namespace tf_test {
    namespace {
    
    #define GEN_PASS_DEF_TESTTENSORFLOWLOWERTFPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/test_passes.h.inc"
    
    // Lowers some of the TensorFlow operations that can be represented using other
    // TensorFlow operations.
    struct LowerTF : public impl::TestTensorFlowLowerTFPassBase<LowerTF> {
      void runOnOperation() override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/math/BigDecimalMath.java

       * the least significant bit zero is chosen. (In such cases, both of the nearest representable
       * values are even integers; this method returns the one that is a multiple of a greater power of
       * two.)
       *
       * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
       *     is not precisely representable as a {@code double}
       * @since 30.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 18:45:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list-enable-dynamic-update-slice.mlir

    // RUN: tf-opt "-tfl-lower-static-tensor-list=allow-tensorlist-pass-through default-to-single-batch enable-dynamic-update-slice" -split-input-file %s | FileCheck %s
    
    // -----
    
    // CHECK-LABEL: tensorlistSetItem
    func.func @tensorlistSetItem(%arg0: tensor<3x10xf32>, %arg1: tensor<1xi32>, %arg2: tensor<i32>, %arg3: tensor<10xf32>) -> tensor<3x10xf32> {
      %0 = "tf.TensorListFromTensor"(%arg0, %arg1) : (tensor<3x10xf32>, tensor<1xi32>) -> tensor<!tf_type.variant<tensor<10xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top