Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for php (0.17 sec)

  1. LICENSES/vendor/github.com/dustin/go-humanize/LICENSE

    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    SOFTWARE.
    
    <http://www.opensource.org/licenses/mit-license.php>
    
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Fri May 08 04:49:00 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/PostForm.kt

      fun run() {
        val formBody =
          FormBody.Builder()
            .add("search", "Jurassic Park")
            .build()
        val request =
          Request(
            url = "https://en.wikipedia.org/w/index.php".toHttpUrl(),
            body = formBody,
          )
    
        client.newCall(request).execute().use { response ->
          if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/PostForm.java

        RequestBody formBody = new FormBody.Builder()
            .add("search", "Jurassic Park")
            .build();
        Request request = new Request.Builder()
            .url("https://en.wikipedia.org/w/index.php")
            .post(formBody)
            .build();
    
        try (Response response = client.newCall(request).execute()) {
          if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
    
    Java
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sun May 22 01:29:42 GMT 2016
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

      <description>General parent POM for all hamcrest libraries.</description>
    
      <licenses>
        <license>
          <name>New BSD License</name>
          <url>http://www.opensource.org/licenses/bsd-license.php</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
    
      <scm>
        <url>https://github.com/hamcrest/JavaHamcrest</url>
        <connection>scm:git:******@****.***:hamcrest/JavaHamcrest.git</connection>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  5. common/config/license-lint.yml

      - AFL-3.0
      - Artistic-1.0
      - Artistic-2.0
      - Apache-1.1
      - BSD-1-Clause
      - BSD-2-Clause
      - BSD-3-Clause
      - 0BSD
      - FTL
      - LPL-1.02
      - MS-PL
      - MIT
      - NCSA
      - OpenSSL
      - PHP-3.0
      - TCP-wrappers
      - W3C
      - Xnet
      - Zlib
    
    reciprocal_licenses:
      - CC0-1.0
      - APSL-2.0
      - CDDL-1.0
      - CDDL-1.1
      - CPL-1.0
      - EPL-1.0
      - IPL-1.0
      - MPL-1.0
      - MPL-1.1
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 25 19:26:20 GMT 2023
    - 3.2K bytes
    - Viewed (1)
  6. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     * See also [OWASP: Certificate and Public Key Pinning][owasp].
     *
     * [charles]: http://charlesproxy.com
     * [fiddler]: http://fiddlertool.com
     * [langley]: http://goo.gl/AIx3e5
     * [owasp]: https://www.owasp.org/index.php/Certificate_and_Public_Key_Pinning
     * [rfc_7469]: http://tools.ietf.org/html/rfc7469
     * [static_certificates]: http://goo.gl/XDh6je
     */
    @Suppress("NAME_SHADOWING")
    class CertificatePinner internal constructor(
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 14.2K bytes
    - Viewed (1)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // lt : https://en.wikipedia.org/wiki/.lt
    lt
    // gov.lt : http://www.gov.lt/index_en.php
    gov.lt
    
    // lu : http://www.dns.lu/en/
    lu
    
    // lv : http://www.nic.lv/DNS/En/generic.php
    lv
    com.lv
    edu.lv
    gov.lv
    org.lv
    mil.lv
    id.lv
    net.lv
    asn.lv
    conf.lv
    
    // ly : http://www.nic.ly/regulations.php
    ly
    com.ly
    net.ly
    gov.ly
    plc.ly
    edu.ly
    sch.ly
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  8. docs/recipes.md

          fun run() {
            val formBody = FormBody.Builder()
                .add("search", "Jurassic Park")
                .build()
            val request = Request.Builder()
                .url("https://en.wikipedia.org/w/index.php")
                .post(formBody)
                .build()
    
            client.newCall(request).execute().use { response ->
              if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Fri Feb 18 08:52:22 GMT 2022
    - 40.2K bytes
    - Viewed (1)
  9. ci/devinfra/docker_windows/Dockerfile

        choco install nuget.commandline; \
        choco install openjdk11; \
        choco install peazip; \
        choco install peazip.install; \
        choco install peazip.portable; \
        choco install php --version 7.2.0; \
        choco install protoc --version 3.2.0; \
        choco install ruby --version 2.5.0.1; \
        choco install swig --version 3.0.9; \
        choco install sysinternals; \
        choco install unrar; \
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Aug 18 17:24:20 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  10. LICENSE

    ------------------------------------------------------------------------------
    Eclipse Distribution License 1.0
    https://www.eclipse.org/org/documents/edl-v10.php
    
    org.eclipse.jgit:org.eclipse.jgit
    
    ------------------------------------------------------------------------------
    BSD-style
    
    com.jcraft:jzlib
    com.github.mwiede:jsch
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top