Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for small7 (0.12 sec)

  1. src/debug/elf/elf.go

    	for _, n := range names {
    		if n.i == i {
    			if goSyntax {
    				return "elf." + n.s
    			}
    			return n.s
    		}
    	}
    
    	// second pass - look for smaller to add with.
    	// assume sorted already
    	for j := len(names) - 1; j >= 0; j-- {
    		n := names[j]
    		if n.i < i {
    			s := n.s
    			if goSyntax {
    				s = "elf." + s
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    		},
    	}
    	tc.runTest(t)
    }
    
    // TestComputedToleranceAlgImplementation is a regression test which
    // back-calculates a minimal percentage for downscaling based on a small percentage
    // increase in pod utilization which is calibrated against the tolerance value.
    func TestComputedToleranceAlgImplementation(t *testing.T) {
    
    	startPods := int32(10)
    	// 150 mCPU per pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %0 = "tf.Const"() {value = dense<2> : tensor<1xi64>} : () -> tensor<1xi64>
      // expected-error @+2 {{'tf.XlaBroadcastHelper' op failed to infer returned types}}
      // expected-error @+1 {{broadcast_dims must have size equal to the smaller argument rank}}
      %lhs_output, %rhs_output = "tf.XlaBroadcastHelper"(%arg0, %arg1, %0) : (tensor<2x3x5xi32>, tensor<5x2xi32>, tensor<1xi64>) -> (tensor<2x3x5xi32>, tensor<2x1x5xi32>)
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // Prefetch instructions (aux is option: 0 - PLDL1KEEP; 1 - PLDL1STRM)
    (PrefetchCache addr mem)         => (PRFM [0] addr mem)
    (PrefetchCacheStreamed addr mem) => (PRFM [1] addr mem)
    
    // Arch-specific inlining for small or disjoint runtime.memmove
    (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore  _ src s3:(MOVDstore {t} _ dst mem)))))
    	&& sz >= 0
    	&& isSameCall(sym, "runtime.memmove")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      RankedTensorType max_rank_ty = broadcast_lhs ? rhs_ty : lhs_ty;
    
      if (dims.size() != min_rank_ty.getRank()) {
        return emitOptionalError(
            location,
            "broadcast_dims must have size equal to the smaller argument rank");
      }
    
      int64_t output_rank = max_rank_ty.getRank();
      llvm::SmallVector<int64_t, 4> broadcast_shape(output_rank, 1LL);
      llvm::SmallVector<bool, 4> is_broadcasted(output_rank, false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          if (input_type.getShape().equals(output_type.getShape())) {
            return success();
          }
          op.emitOpError()
              << "output tensor shape shall be equal to input tensor shape";
          return failure();
        };
    
        if (input_element_type_bitwidth < output_element_type_bitwidth) {
          return is_output_shape_valid_with_small_input_element_type_bitwidth();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Fix issue in updating device path when volume is attached multiple times ([#33796](https://github.com/kubernetes/kubernetes/pull/33796), [@jingxu97](https://github.com/jingxu97))
    * To reduce memory usage to reasonable levels in smaller clusters, kube-apiserver now sets the deserialization cache size based on the target memory usage. ([#34000](https://github.com/kubernetes/kubernetes/pull/34000), [@wojtek-t](https://github.com/wojtek-t))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Add kubectl --node-port option for specifying the service nodeport ([#33319](https://github.com/kubernetes/kubernetes/pull/33319), [@juanvallejo](https://github.com/juanvallejo))
    * To reduce memory usage to reasonable levels in smaller clusters, kube-apiserver now sets the deserialization cache size based on the target memory usage. ([#34000](https://github.com/kubernetes/kubernetes/pull/34000), [@wojtek-t](https://github.com/wojtek-t))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	if uint(n) > uint(s.Cap) {
    		panic("reflect: slice length out of range in SetLen")
    	}
    	s.Len = n
    }
    
    // SetCap sets v's capacity to n.
    // It panics if v's Kind is not [Slice] or if n is smaller than the length or
    // greater than the capacity of the slice.
    func (v Value) SetCap(n int) {
    	v.mustBeAssignable()
    	v.mustBe(Slice)
    	s := (*unsafeheader.Slice)(v.ptr)
    	if n < s.Len || n > s.Cap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // Second, if you are compiling a Go program not in a work space,
    // you can use a relative path in an import statement in that program
    // to refer to nearby code also not in a work space.
    // This makes it easy to experiment with small multipackage programs
    // outside of the usual work spaces, but such programs cannot be
    // installed with "go install" (there is no work space in which to install them),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top