Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 696 for reverse2 (0.21 sec)

  1. guava/src/com/google/common/collect/GeneralRange.java

      }
    
      @LazyInit @CheckForNull private transient GeneralRange<T> reverse;
    
      /** Returns the same range relative to the reversed comparator. */
      GeneralRange<T> reverse() {
        GeneralRange<T> result = reverse;
        if (result == null) {
          result =
              new GeneralRange<>(
                  Ordering.from(comparator).reverse(),
                  hasUpperBound,
                  getUpperEndpoint(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Booleans.java

        return count;
      }
    
      /**
       * Reverses the elements of {@code array}. This is equivalent to {@code
       * Collections.reverse(Booleans.asList(array))}, but is likely to be more efficient.
       *
       * @since 23.1
       */
      public static void reverse(boolean[] array) {
        checkNotNull(array);
        reverse(array, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Booleans.java

        return count;
      }
    
      /**
       * Reverses the elements of {@code array}. This is equivalent to {@code
       * Collections.reverse(Booleans.asList(array))}, but is likely to be more efficient.
       *
       * @since 23.1
       */
      public static void reverse(boolean[] array) {
        checkNotNull(array);
        reverse(array, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. src/slices/sort_test.go

    		d[i].b = i
    	}
    }
    
    // InOrder checks if a-equal elements were not reordered.
    // If reversed is true, expect reverse ordering.
    func (d intPairs) inOrder(reversed bool) bool {
    	lastA, lastB := -1, 0
    	for i := 0; i < len(d); i++ {
    		if lastA != d[i].a {
    			lastA = d[i].a
    			lastB = d[i].b
    			continue
    		}
    		if !reversed {
    			if d[i].b <= lastB {
    				return false
    			}
    		} else {
    			if d[i].b >= lastB {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/aes/aes-cbc-multiple-providers-reversed.json

    immutablet <******@****.***> 1573691900 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 21:59:25 UTC 2019
    - 645 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/aes/aes-cbc-multiple-keys-reversed.json

    immutablet <******@****.***> 1573691900 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 21:59:25 UTC 2019
    - 555 bytes
    - Viewed (0)
  7. src/math/bits/example_test.go

    	fmt.Printf("%08b\n", 19)
    	fmt.Printf("%08b\n", bits.Reverse8(19))
    	// Output:
    	// 00010011
    	// 11001000
    }
    
    func ExampleReverse16() {
    	fmt.Printf("%016b\n", 19)
    	fmt.Printf("%016b\n", bits.Reverse16(19))
    	// Output:
    	// 0000000000010011
    	// 1100100000000000
    }
    
    func ExampleReverse32() {
    	fmt.Printf("%032b\n", 19)
    	fmt.Printf("%032b\n", bits.Reverse32(19))
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:16:09 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Chars.java

        Arrays.sort(array, fromIndex, toIndex);
        reverse(array, fromIndex, toIndex);
      }
    
      /**
       * Reverses the elements of {@code array}. This is equivalent to {@code
       * Collections.reverse(Chars.asList(array))}, but is likely to be more efficient.
       *
       * @since 23.1
       */
      public static void reverse(char[] array) {
        checkNotNull(array);
        reverse(array, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. src/math/bits/bits_test.go

    	got32 := Reverse32(x32)
    	want32 := uint32(want64 >> (64 - 32))
    	if got32 != want32 {
    		t.Fatalf("Reverse32(%#08x) == %#08x; want %#08x", x32, got32, want32)
    	}
    	if UintSize == 32 {
    		x := uint(x32)
    		got := Reverse(x)
    		want := uint(want32)
    		if got != want {
    			t.Fatalf("Reverse(%#08x) == %#08x; want %#08x", x, got, want)
    		}
    	}
    
    	got64 := Reverse64(x64)
    	if got64 != want64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 22 20:11:06 UTC 2020
    - 32.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Chars.java

        Arrays.sort(array, fromIndex, toIndex);
        reverse(array, fromIndex, toIndex);
      }
    
      /**
       * Reverses the elements of {@code array}. This is equivalent to {@code
       * Collections.reverse(Chars.asList(array))}, but is likely to be more efficient.
       *
       * @since 23.1
       */
      public static void reverse(char[] array) {
        checkNotNull(array);
        reverse(array, 0, array.length);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top