Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,390 for INT (0.12 sec)

  1. 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 Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

        static final int NB        = 0x0020;
        static final int NBSTAT    = 0x0021;
        static final int IN        = 0x0001;
        static final int A         = 0x0001;
        static final int NS        = 0x0002;
        static final int NULL      = 0x000a;
    
        static final int HEADER_LENGTH = 12;
    
        // header field offsets
        static final int OPCODE_OFFSET = 2;
        static final int QUESTION_OFFSET = 4;
        static final int ANSWER_OFFSET = 6;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Ints.java

       * 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) {
          length += array.length;
        }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/Encdec.java

         */
    
        public static int enc_uint64be ( long l, byte[] dst, int di ) {
            enc_uint32be((int) ( l & 0xFFFFFFFFL ), dst, di + 4);
            enc_uint32be((int) ( ( l >> 32L ) & 0xFFFFFFFFL ), dst, di);
            return 8;
        }
    
    
        public static int enc_uint64le ( long l, byte[] dst, int di ) {
            enc_uint32le((int) ( l & 0xFFFFFFFFL ), dst, di);
            enc_uint32le((int) ( ( l >> 32L ) & 0xFFFFFFFFL ), dst, di + 4);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

            public int getOpnum() { return 0x15; }
    
            public int retval;
            public String dfs_name;
            public int level;
            public int prefmaxlen;
            public DfsEnumStruct info;
            public NdrLong totalentries;
    
            public NetrDfsEnumEx(String dfs_name,
                        int level,
                        int prefmaxlen,
                        DfsEnumStruct info,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 15K bytes
    - Viewed (0)
  6. api/go1.17.txt

    pkg image, method (*CMYK) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*Gray) RGBA64At(int, int) color.RGBA64
    pkg image, method (*Gray) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*Gray16) RGBA64At(int, int) color.RGBA64
    pkg image, method (*Gray16) SetRGBA64(int, int, color.RGBA64)
    pkg image, method (*NRGBA) RGBA64At(int, int) color.RGBA64
    pkg image, method (*NRGBA) SetRGBA64(int, int, color.RGBA64)
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        /**
         * 
         */
        public static final int SMB2_FLAGS_DFS_OPERATIONS = 0x10000000;
        /**
         * 
         */
        public static final int SMB2_FLAGS_REPLAY_OPERATION = 0x20000000;
    
        private int command;
        private int flags;
        private int length, headerStart, wordCount, byteCount;
    
        private byte[] signature = new byte[16];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

          return;
        }
        int newThreshold = 1 + (int) (newCapacity * loadFactor);
        int[] newTable = newTable(newCapacity);
        long[] entries = this.entries;
    
        int mask = newTable.length - 1;
        for (int i = 0; i < size; i++) {
          long oldEntry = entries[i];
          int hash = getHash(oldEntry);
          int tableIndex = hash & mask;
          int next = newTable[tableIndex];
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 01 22:07:10 GMT 2021
    - 15K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

        protected int primarySetupOffset;
        protected int secondaryParameterOffset;
        protected int parameterCount;
        protected int parameterOffset;
        protected int parameterDisplacement;
        protected int dataCount;
        protected int dataOffset;
        protected int dataDisplacement;
    
        int totalParameterCount;
        int totalDataCount;
        int maxParameterCount;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  10. android/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 May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 24.5K bytes
    - Viewed (0)
Back to top