Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 151 for 1605 (0.04 sec)

  1. okhttp/src/main/kotlin/okhttp3/Cookie.kt

          if (year in 0..69) year += 2000
    
          // If any partial is omitted or out of range, return -1. The date is impossible. Note that leap
          // seconds are not supported by this syntax.
          require(year >= 1601)
          require(month != -1)
          require(dayOfMonth in 1..31)
          require(hour in 0..23)
          require(minute in 0..59)
          require(second in 0..59)
    
          GregorianCalendar(UTC).apply {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 04:12:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Shorts.java

       * parsed. For example, the string {@code "0123"} is treated as <i>octal</i> and converted to the
       * value {@code 83}.
       *
       * @since 16.0
       */
      public static Converter<String, Short> stringConverter() {
        return ShortConverter.INSTANCE;
      }
    
      /**
       * Returns an array containing the same values as {@code array}, but guaranteed to be of a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/Shorts.java

       * parsed. For example, the string {@code "0123"} is treated as <i>octal</i> and converted to the
       * value {@code 83}.
       *
       * @since 16.0
       */
      public static Converter<String, Short> stringConverter() {
        return ShortConverter.INSTANCE;
      }
    
      /**
       * Returns an array containing the same values as {@code array}, but guaranteed to be of a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/CharSource.java

       * it does.
       *
       * @throws IOException if an I/O error occurs while reading from this source or if {@code
       *     processor} throws an {@code IOException}
       * @since 16.0
       */
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public <T extends @Nullable Object> T readLines(LineProcessor<T> processor) throws IOException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:20:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ntlmssp/Type3Message.java

         * @param type2
         *            The Type-2 message.
         * @param responseKeyNT
         * @param clientChallenge
         * @param clientChallengeInfo
         * @param ts
         *            timestamp (nanos since 1601)
         * @return A <code>byte[]</code> containing the NTLMv2 response.
         */
        public static byte[] getNTLMv2Response ( CIFSContext tc, Type2Message type2, byte[] responseKeyNT, byte[] clientChallenge,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  6. src/archive/tar/reader_test.go

    		tests: []testFnc{
    			testRemaining{10, 5},
    			testRead{100, "ab\x00\x00\x00cde\x00\x00", io.EOF},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{"abc", 5}, sparseDatas{{0, 2}, {5, 3}}, 10},
    		tests: []testFnc{
    			testRemaining{10, 5},
    			testRead{100, "ab\x00\x00\x00c", io.ErrUnexpectedEOF},
    			testRemaining{4, 2},
    		},
    	}, {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 03 15:48:09 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  7. api/go1.14.txt

    pkg debug/dwarf, const AttrRnglistsBase = 116
    pkg debug/dwarf, const AttrRnglistsBase Attr
    pkg debug/dwarf, const AttrRvalueReference = 120
    pkg debug/dwarf, const AttrRvalueReference Attr
    pkg debug/dwarf, const AttrSignature = 105
    pkg debug/dwarf, const AttrSignature Attr
    pkg debug/dwarf, const AttrSmall = 93
    pkg debug/dwarf, const AttrSmall Attr
    pkg debug/dwarf, const AttrStrOffsetsBase = 114
    pkg debug/dwarf, const AttrStrOffsetsBase Attr
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    break;case"meridian":this.toggleMeridian()}this.setTime(this.getTime()),c.get(0).setSelectionRange(0,2)}},widgetKeyup:function(a){(65===a.which||77===a.which||80===a.which||46===a.which||8===a.which||a.which>=48&&a.which<=57||a.which>=96&&a.which<=105)&&this.updateFromWidgetInputs()}},a.fn.timepicker=function(b){var c=Array.apply(null,arguments);return c.shift(),this.each(function(){var e=a(this),f=e.data("timepicker"),g="object"==typeof b&&b;f||e.data("timepicker",f=new d(this,a.extend({},a.fn....
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

      }
    
      private static class Md5Holder {
        static final HashFunction MD5 = new MessageDigestHashFunction("MD5", "Hashing.md5()");
      }
    
      /**
       * Returns a hash function implementing the SHA-1 algorithm (160 hash bits).
       *
       * @deprecated If you must interoperate with a system that requires SHA-1, then use this method,
       *     despite its deprecation. But if you can choose your hash function, avoid SHA-1, which is
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. index.yaml

        maintainers:
        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-1.0.5.tgz
        version: 1.0.5
      - apiVersion: v1
        appVersion: RELEASE.2021-08-25T00-41-18Z
        created: "2024-10-11T14:15:09.710075719+02:00"
        description: Multi-Cloud Object Storage
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 11 12:21:05 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top