Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for fit (0.15 sec)

  1. android/guava/src/com/google/common/base/Utf8.java

          }
        }
    
        if (utf8Length < utf16Length) {
          // Necessary and sufficient condition for overflow because of maximum 3x expansion
          throw new IllegalArgumentException(
              "UTF-8 length does not fit in int: " + (utf8Length + (1L << 32)));
        }
        return utf8Length;
      }
    
      private static int encodedLengthGeneral(CharSequence sequence, int start) {
        int utf16Length = sequence.length();
        int utf8Length = 0;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 10 14:11:51 GMT 2023
    - 7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    					p.errorf("invalid addressing modes for third operand to %s instruction, must be register", op)
    					return
    				}
    				prog.RegTo2 = a[2].Reg
    			case arch.IsARM64TBL(op):
    				// one of its inputs does not fit into prog.Reg.
    				prog.From = a[0]
    				prog.AddRestSource(a[1])
    				prog.To = a[2]
    			case arch.IsARM64CASP(op):
    				prog.From = a[0]
    				prog.To = a[1]
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  3. docs/changelogs/upgrading_to_okhttp_4.md

      `Headers.of(String...)` with `headersOf(vararg String)`.
    
    #### Extension Functions
    
    We’ve migrated from static functions to extension functions where we think they fit.
    
    | Java                                | Kotlin                          |
    | :---------------------------------- | :------------------------------ |
    | Handshake.get(SSLSession)           | SSLSession.handshake()          |
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

       without warranty of any kind, either expressed, implied, or statutory,
       including, without limitation, warranties that the Covered Software is free
       of defects, merchantable, fit for a particular purpose or non-infringing.
       The entire risk as to the quality and performance of the Covered Software
       is with You. Should any Covered Software prove defective in any respect,
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/go-multierror/LICENSE

       warranty of any kind, either expressed, implied, or statutory, including,
       without limitation, warranties that the Covered Software is free of defects,
       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Longs.java

       * @param arrays zero or more {@code long} arrays
       * @return a single array containing all the values from the source arrays, in order
       * @throws IllegalArgumentException if the total number of elements in {@code arrays} does not fit
       *     in an {@code int}
       */
      public static long[] concat(long[]... arrays) {
        long length = 0;
        for (long[] 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
    - 28.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

            if (TF_GetCode(status) == TF_OK) {
              block->data.resize(bytes_transferred, 0);
              // Shrink the data capacity to the actual size used.
              // NOLINTNEXTLINE: shrink_to_fit() may not shrink the capacity.
              std::vector<char>(block->data).swap(block->data);
              downloaded_block = true;
              block->state = FetchState::FINISHED;
            } else {
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 16 01:39:09 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/go-version/LICENSE

       warranty of any kind, either expressed, implied, or statutory, including,
       without limitation, warranties that the Covered Software is free of defects,
       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtStatus.java

        };
    
        static final String[] NT_STATUS_MESSAGES = {
            "The operation completed successfully.", "Request is pending", "A notify change request is being completed.",
            "The data was too large to fit into the specified buffer.", "A device attached to the system is not functioning.", "Incorrect function.",
            "The parameter is incorrect.", "Invalid access to memory location.", "The handle is invalid.", "The parameter is incorrect.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/errwrap/LICENSE

       warranty of any kind, either expressed, implied, or statutory, including,
       without limitation, warranties that the Covered Software is free of defects,
       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
Back to top