Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,948 for integers (0.18 sec)

  1. tensorflow/cc/experimental/libtf/tests/object_test.cc

    }
    
    None AppendIntegerToList(List a, Integer b) {
      a.append(b);
      return None();
    }
    Integer AddIntegersTyped(Integer a, Integer b) {
      return Integer(a.get() + b.get());
    }
    Integer ReturnFive() { return Integer(5); }
    
    TEST(TypeUneraseCallTest, TestCallable) {
      // Add two integers.
      Callable add(TFLIB_CALLABLE_ADAPTOR(AddIntegersTyped));
      auto res = add.Call<Integer>(Integer(3), Integer(1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Funnels.java

        }
      }
    
      /**
       * Returns a funnel for integers.
       *
       * @since 13.0
       */
      public static Funnel<Integer> integerFunnel() {
        return IntegerFunnel.INSTANCE;
      }
    
      private enum IntegerFunnel implements Funnel<Integer> {
        INSTANCE;
    
        @Override
        public void funnel(Integer from, PrimitiveSink into) {
          into.putInt(from);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 25 20:32:46 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Funnels.java

        }
      }
    
      /**
       * Returns a funnel for integers.
       *
       * @since 13.0
       */
      public static Funnel<Integer> integerFunnel() {
        return IntegerFunnel.INSTANCE;
      }
    
      private enum IntegerFunnel implements Funnel<Integer> {
        INSTANCE;
    
        @Override
        public void funnel(Integer from, PrimitiveSink into) {
          into.putInt(from);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 25 20:32:46 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/data_flow_grad.cc

      // Note: the shape of the partitions is a prefix of the data shape.
      // shape(partitions) = [5]
      auto partitions_shape = Shape(scope, partitions);
      // We now create a partitions-shaped tensor with integers from
      // [0..size(partitions)) This will be dynamic_partitioned with the
      // input parameters, providing the destination index for a given
      // source item.
      // partitions_size = prod([5]) = 5
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  5. src/math/big/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Package big implements arbitrary-precision arithmetic (big numbers).
    The following numeric types are supported:
    
    	Int    signed integers
    	Rat    rational numbers
    	Float  floating-point numbers
    
    The zero value for an [Int], [Rat], or [Float] correspond to 0. Thus, new
    values can be declared in the usual ways and denote 0 without further
    initialization:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                which Calico uses to enforce the rule.
                              type: integer
                            type:
                              description: Match on a specific ICMP type.  For example
                                a value of 8 refers to ICMP Echo Request (i.e. pings).
                              type: integer
                          type: object
                        ipVersion:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/LongMath.java

       * href="http://mathworld.wolfram.com/PrimeNumber.html">prime number</a>: an integer <i>greater
       * than one</i> that cannot be factored into a product of <i>smaller</i> positive integers.
       * Returns {@code false} if {@code n} is zero, one, or a composite number (one which <i>can</i> be
       * factored into smaller positive integers).
       *
       * <p>To test larger numbers, use {@link BigInteger#isProbablePrime}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LongMath.java

       * href="http://mathworld.wolfram.com/PrimeNumber.html">prime number</a>: an integer <i>greater
       * than one</i> that cannot be factored into a product of <i>smaller</i> positive integers.
       * Returns {@code false} if {@code n} is zero, one, or a composite number (one which <i>can</i> be
       * factored into smaller positive integers).
       *
       * <p>To test larger numbers, use {@link BigInteger#isProbablePrime}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    The comparison functions work on any values whose type Go defines as
    comparable. For basic types such as integers, the rules are relaxed:
    size and exact type are ignored, so any integer value, signed or unsigned,
    may be compared with any other integer value. (The arithmetic value is compared,
    not the bit pattern, so all negative integers are less than all unsigned integers.)
    However, as usual, one may not compare an int with a float32 and so on.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/strconv/itoa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package strconv
    
    import "math/bits"
    
    const fastSmalls = true // enable fast path for small integers
    
    // FormatUint returns the string representation of i in the given base,
    // for 2 <= base <= 36. The result uses the lower-case letters 'a' to 'z'
    // for digit values >= 10.
    func FormatUint(i uint64, base int) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top