Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for php (0.13 sec)

  1. 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 May 03 11:42:14 GMT 2024
    - Last Modified: Sun May 22 01:29:42 GMT 2016
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Perl */
        public static final String LABELS_facet_filetype_perl = "{labels.facet_filetype_perl}";
    
        /** The key of the message: PHP */
        public static final String LABELS_facet_filetype_php = "{labels.facet_filetype_php}";
    
        /** The key of the message: Properties */
        public static final String LABELS_facet_filetype_properties = "{labels.facet_filetype_properties}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top