Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for geodata (0.31 sec)

  1. okhttp/api/okhttp.api

    	public final fun -deprecated_size ()I
    	public final fun byteCount ()J
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun get (Ljava/lang/String;)Ljava/lang/String;
    	public final fun getDate (Ljava/lang/String;)Ljava/util/Date;
    	public final fun getInstant (Ljava/lang/String;)Ljava/time/Instant;
    	public fun hashCode ()I
    	public fun iterator ()Ljava/util/Iterator;
    	public final fun name (I)Ljava/lang/String;
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  2. api/go1.1.txt

    pkg syscall (darwin-386), const ENETUNREACH = 51
    pkg syscall (darwin-386), const ENFILE = 23
    pkg syscall (darwin-386), const ENOATTR = 93
    pkg syscall (darwin-386), const ENOBUFS = 55
    pkg syscall (darwin-386), const ENODATA = 96
    pkg syscall (darwin-386), const ENODEV = 19
    pkg syscall (darwin-386), const ENOEXEC = 8
    pkg syscall (darwin-386), const ENOLCK = 77
    pkg syscall (darwin-386), const ENOLINK = 97
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    iservschule.de
    mein-iserv.de
    schulplattform.de
    schulserver.de
    test-iserv.de
    iserv.dev
    
    // I-O DATA DEVICE, INC. : http://www.iodata.com/
    // Submitted by Yuji Minagawa <domains-admin@iodata.jp>
    iobb.net
    
    // Jelastic, Inc. : https://jelastic.com/
    // Submitted by Ihor Kolodyuk <******@****.***>
    mel.cloudlets.com.au
    cloud.interhostsolutions.be
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  4. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const ENAVAIL Errno
    pkg syscall (linux-arm-cgo), const ENOANO Errno
    pkg syscall (linux-arm-cgo), const ENOCSI Errno
    pkg syscall (linux-arm-cgo), const ENODATA Errno
    pkg syscall (linux-arm-cgo), const ENOKEY Errno
    pkg syscall (linux-arm-cgo), const ENOLINK Errno
    pkg syscall (linux-arm-cgo), const ENOMEDIUM Errno
    pkg syscall (linux-arm-cgo), const ENONET Errno
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const ENOATTR = 93
    pkg syscall (darwin-arm64), const ENOATTR Errno
    pkg syscall (darwin-arm64), const ENOBUFS = 55
    pkg syscall (darwin-arm64), const ENODATA = 96
    pkg syscall (darwin-arm64), const ENODATA Errno
    pkg syscall (darwin-arm64), const ENODEV = 19
    pkg syscall (darwin-arm64), const ENOEXEC = 8
    pkg syscall (darwin-arm64), const ENOLCK = 77
    pkg syscall (darwin-arm64), const ENOLINK = 97
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (darwin-386), const ELAST Errno
    pkg syscall (darwin-386), const EMULTIHOP Errno
    pkg syscall (darwin-386), const ENEEDAUTH Errno
    pkg syscall (darwin-386), const ENOATTR Errno
    pkg syscall (darwin-386), const ENODATA Errno
    pkg syscall (darwin-386), const ENOLINK Errno
    pkg syscall (darwin-386), const ENOPOLICY Errno
    pkg syscall (darwin-386), const ENOSR Errno
    pkg syscall (darwin-386), const ENOSTR Errno
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. okhttp/src/main/kotlin/okhttp3/Headers.kt

      /**
       * Returns the last value corresponding to the specified field parsed as an HTTP date, or null if
       * either the field is absent or cannot be parsed as a date.
       */
      fun getDate(name: String): Date? = get(name)?.toHttpDateOrNull()
    
      /**
       * Returns the last value corresponding to the specified field parsed as an HTTP date, or null if
       * either the field is absent or cannot be parsed as a date.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

        val headers =
          Headers.Builder()
            .add("testDate", expected)
            .build()
        assertThat(headers["testDate"]).isEqualTo("Thu, 01 Jan 1970 00:00:00 GMT")
        assertThat(headers.getDate("testDate")).isEqualTo(Date(0L))
      }
    
      @Test fun addInstant() {
        val expected = Instant.ofEpochMilli(0L)
        val headers =
          Headers.Builder()
            .add("Test-Instant", expected)
            .build()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

      }
    
      @Test
      fun headers() {
        var headers: Headers = headersOf("", "")
        headers = mapOf("" to "").toHeaders()
        val get: String? = headers[""]
        val date: Date? = headers.getDate("")
        val instant: Instant? = headers.getInstant("")
        val size: Int = headers.size
        val name: String = headers.name(0)
        val value: String = headers.value(0)
        val names: Set<String> = headers.names()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 01 14:21:25 GMT 2024
    - 46.5K bytes
    - Viewed (4)
  10. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ENOATTR = 93
    pkg syscall (netbsd-arm64-cgo), const ENOATTR Errno
    pkg syscall (netbsd-arm64-cgo), const ENOBUFS = 55
    pkg syscall (netbsd-arm64-cgo), const ENODATA = 89
    pkg syscall (netbsd-arm64-cgo), const ENODATA Errno
    pkg syscall (netbsd-arm64-cgo), const ENODEV = 19
    pkg syscall (netbsd-arm64-cgo), const ENOEXEC = 8
    pkg syscall (netbsd-arm64-cgo), const ENOLCK = 77
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
Back to top