Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,043 for int (0.2 sec)

  1. android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

                new int[] {LEAST, LEAST},
                new int[] {LEAST, (int) 1L},
                new int[] {(int) 1L},
                new int[] {(int) 1L, LEAST},
                new int[] {GREATEST, (GREATEST - (int) 1L)},
                new int[] {GREATEST, GREATEST},
                new int[] {GREATEST, GREATEST, GREATEST});
    
        Comparator<int[]> comparator = UnsignedInts.lexicographicalComparator();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/IntsTest.java

                Ints.indexOf(
                    new int[] {(int) 2, (int) 3, (int) 2, (int) 3, (int) 4, (int) 2, (int) 3},
                    new int[] {(int) 2, (int) 3, (int) 4}))
            .isEqualTo(2);
        assertThat(
                Ints.indexOf(
                    new int[] {(int) 2, (int) 2, (int) 3, (int) 4, (int) 2, (int) 3, (int) 4},
                    new int[] {(int) 2, (int) 3, (int) 4}))
            .isEqualTo(1);
        assertThat(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const AF_CHAOS = 5
    pkg syscall (freebsd-arm64), const AF_CHAOS ideal-int
    pkg syscall (freebsd-arm64), const AF_CNT = 21
    pkg syscall (freebsd-arm64), const AF_CNT ideal-int
    pkg syscall (freebsd-arm64), const AF_COIP = 20
    pkg syscall (freebsd-arm64), const AF_COIP ideal-int
    pkg syscall (freebsd-arm64), const AF_DATAKIT = 9
    pkg syscall (freebsd-arm64), const AF_DATAKIT ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const AF_DATAKIT = 9
    pkg syscall (darwin-arm64), const AF_DATAKIT ideal-int
    pkg syscall (darwin-arm64), const AF_DECnet = 12
    pkg syscall (darwin-arm64), const AF_DECnet ideal-int
    pkg syscall (darwin-arm64), const AF_DLI = 13
    pkg syscall (darwin-arm64), const AF_DLI ideal-int
    pkg syscall (darwin-arm64), const AF_E164 = 28
    pkg syscall (darwin-arm64), const AF_E164 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/math/IntMathTest.java

        if (big.compareTo(MAX_INT) > 0) {
          return Integer.MAX_VALUE;
        }
        if (big.compareTo(MIN_INT) < 0) {
          return Integer.MIN_VALUE;
        }
        return big.intValue();
      }
    
      private void assertOperationEquals(int a, int b, String op, int expected, int actual) {
        if (expected != actual) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 24.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    protected static final int READ_CHUNK_SIZE = 8192; protected java.io.Reader reader; protected String inputEncoding; protected int bufLoadFactor; protected char[] buf; protected int bufSoftLimit; protected boolean preventBufferCompact; protected int bufAbsoluteStart; protected int bufStart; protected int bufEnd; protected int pos; protected int posStart; protected int posEnd; protected char[] pc; protected int pcStart; protected int pcEnd; protected boolean usePC; protected boolean seenStartTag; protected...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (linux-386-cgo), const CLONE_PIDFD = 4096 #51246
    pkg syscall (linux-386-cgo), const CLONE_PIDFD ideal-int #51246
    pkg syscall (linux-386-cgo), type SysProcAttr struct, CgroupFD int #51246
    pkg syscall (linux-386-cgo), type SysProcAttr struct, UseCgroupFD bool #51246
    pkg syscall (linux-386), const CLONE_CLEAR_SIGHAND = 4294967296 #51246
    pkg syscall (linux-386), const CLONE_CLEAR_SIGHAND ideal-int #51246
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java

      }
    
      @Override
      public int hashCode() {
        return getClass().hashCode() ^ seed;
      }
    
      @Override
      public HashCode hashInt(int input) {
        int k1 = mixK1(input);
        int h1 = mixH1(seed, k1);
    
        return fmix(h1, Ints.BYTES);
      }
    
      @Override
      public HashCode hashLong(long input) {
        int low = (int) input;
        int high = (int) (input >>> 32);
    
        int k1 = mixK1(low);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jun 15 20:59:00 GMT 2022
    - 11.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/UnsignedIntegerTest.java

          for (int l : TEST_INTS) {
            UnsignedInteger value = UnsignedInteger.fromIntBits(l);
            assertThat(value.toString(radix)).isEqualTo(value.bigIntegerValue().toString(radix));
          }
        }
      }
    
      public void testToStringRadixQuick() {
        int[] radices = {2, 3, 5, 7, 10, 12, 16, 21, 31, 36};
        for (int radix : radices) {
          for (int l : TEST_INTS) {
            UnsignedInteger value = UnsignedInteger.fromIntBits(l);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Jun 01 09:32:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/config/BaseConfiguration.java

        protected String netbiosHostname;
        protected int netbiosCachePolicy = 60 * 60 * 10;
        protected int netbiosSocketTimeout = 5000;
        protected int netbiosSendBufferSize = 576;
        protected int netbiosRevcBufferSize = 576;
        protected int netbiosRetryCount = 2;
        protected int netbiosRetryTimeout = 3000;
        protected String netbiosScope;
        protected int netbiosLocalPort = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
Back to top