Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,686 for intp (0.13 sec)

  1. guava/src/com/google/common/primitives/Ints.java

       * Returns the values from each provided array combined into a single array. For example, {@code
       * concat(new int[] {a, b}, new int[] {}, new int[] {c}} returns the array {@code {a, b, c}}.
       *
       * @param arrays zero or more {@code int} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static int[] concat(int[]... arrays) {
        int length = 0;
        for (int[] array : arrays) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. src/math/big/int.go

    func (z *Int) lehmerGCD(x, y, a, b *Int) *Int {
    	var A, B, Ua, Ub *Int
    
    	A = new(Int).Abs(a)
    	B = new(Int).Abs(b)
    
    	extended := x != nil || y != nil
    
    	if extended {
    		// Ua (Ub) tracks how many times input a has been accumulated into A (B).
    		Ua = new(Int).SetInt64(1)
    		Ub = new(Int)
    	}
    
    	// temp variables for multiprecision update
    	q := new(Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/sets/int.go

    */
    
    package sets
    
    // Int is a set of ints, implemented via map[int]struct{} for minimal memory consumption.
    //
    // Deprecated: use generic Set instead.
    // new ways:
    // s1 := Set[int]{}
    // s2 := New[int]()
    type Int map[int]Empty
    
    // NewInt creates a Int from a list of values.
    func NewInt(items ...int) Int {
    	return Int(New[int](items...))
    }
    
    // IntKeySet creates a Int from a keys of a map[int](? extends interface{}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. security/pkg/pki/testdata/multilevelpki/int2-cert.cfg

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 528 bytes
    - Viewed (0)
  5. security/pkg/pki/testdata/multilevelpki/int2-key.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  6. test/ken/divconst.go

    		u16test(a, b, 16384)
    	}
    }
    
    func i8rand() int8 {
    	for {
    		a := int8(rand.Uint32())
    		a >>= uint(rand.Intn(8))
    		if -a != a {
    			return a
    		}
    	}
    	return 0 // impossible
    }
    
    func i8test(a, b, c int8) {
    	d := a / c
    	if d != b {
    		println("i8", a, b, c, d)
    		panic("fail")
    	}
    }
    
    func i8run() {
    	var a, b int8
    
    	for i := 0; i < Count; i++ {
    		a = i8rand()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 9.2K bytes
    - Viewed (0)
  7. operator/pkg/util/reflect_test.go

    // to ptr conversion utility functions
    func toInt8Ptr(i int8) *int8 { return &i }
    
    func TestIsValueNil(t *testing.T) {
    	if !IsValueNil(nil) {
    		t.Error("got IsValueNil(nil) false, want true")
    	}
    	if !IsValueNil((*int)(nil)) {
    		t.Error("got IsValueNil(ptr) false, want true")
    	}
    	if !IsValueNil(map[int]int(nil)) {
    		t.Error("got IsValueNil(map) false, want true")
    	}
    	if !IsValueNil([]int(nil)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. security/pkg/pki/testdata/multilevelpki/int2-cert.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/low_bit_utils.h

    std::vector<uint8_t> PackInt4ValuesDensely(std::vector<uint8_t> src_buffer);
    
    // Assumes `src_buffer` contains 2 4-bit elements packed in 8-bit.
    // Returns a vector where each int8 element contains a int4 sign-extended value.
    std::vector<char> UnpackDenseInt4IntoInt8(
        const std::vector<uint8_t>& src_buffer, int64_t num_elements);
    }  // namespace tflite
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 12 20:13:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. security/pkg/pki/testdata/multilevelpki/int-cert.cfg

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 526 bytes
    - Viewed (0)
Back to top