Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 230 for curly (0.15 sec)

  1. okcurl/src/main/kotlin/okhttp3/curl/internal/-MainCommon.kt

     * limitations under the License.
     */
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.curl.internal
    
    import java.io.IOException
    import okhttp3.MediaType
    import okhttp3.MediaType.Companion.toMediaTypeOrNull
    import okhttp3.Request
    import okhttp3.RequestBody.Companion.toRequestBody
    import okhttp3.curl.Main
    import okhttp3.internal.http.StatusLine
    import okio.sink
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. samples/bookinfo/src/ratings/Dockerfile

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM node:21.6-slim
    
    #hadolint ignore=DL3008
    RUN apt-get update \
        && apt-get install curl --no-install-recommends -y \
        && rm -rf /var/lib/apt/lists/*
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    COPY package.json /opt/microservices/
    COPY ratings.js /opt/microservices/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1009 bytes
    - Viewed (0)
  3. pkg/test/echo/cmd/client/main.go

    		"Specify the Unix Domain Socket to connect to")
    	rootCmd.PersistentFlags().StringSliceVarP(&headers, "header", "H", headers,
    		"A list of http headers (use Host for authority) - 'name: value', following curl syntax")
    	rootCmd.PersistentFlags().StringVar(&caFile, "ca", "", "CA root cert file")
    	rootCmd.PersistentFlags().StringVar(&msg, "msg", "HelloWorld",
    		"message to send (for websockets)")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    The Mouse did not answer, so Alice went on eagerly:  `There is
    such a nice little dog near our house I should like to show you!
    A little bright-eyed terrier, you know, with oh, such long curly
    brown hair!  And it'll fetch things when you throw them, and
    it'll sit up and beg for its dinner, and all sorts of things--I
    can't remember half of them--and it belongs to a farmer, you
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.misc.Pair;
    import org.codelibs.core.net.UuidUtil;
    import org.codelibs.core.stream.StreamUtil;
    import org.codelibs.curl.Curl;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fess.app.web.base.login.ActionResponseCredential;
    import org.codelibs.fess.app.web.base.login.AzureAdCredential;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. cluster/gce/gci/master.yaml

          ExecStartPre=/bin/mkdir -p /home/kubernetes/bin
          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
          ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  7. cluster/gce/gci/shutdown.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A script that let's gci preemptible nodes gracefully terminate in the event of a VM shutdown.
    preemptible=$(curl "http://metadata.google.internal/computeMetadata/v1/instance/scheduling/preemptible" -H "Metadata-Flavor: Google")
    if [ "${preemptible}" == "TRUE" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 03:46:45 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  8. samples/sleep/sleep.yaml

      template:
        metadata:
          labels:
            app: sleep
        spec:
          terminationGracePeriodSeconds: 0
          serviceAccountName: sleep
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
            imagePullPolicy: IfNotPresent
            volumeMounts:
            - mountPath: /etc/sleep/tls
              name: secret-volume
          volumes:
          - name: secret-volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CopyUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.curl.Curl.Method;
    import org.codelibs.curl.CurlRequest;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.api.BaseApiManager;
    import org.codelibs.fess.exception.FessSystemException;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. okcurl/src/main/kotlin/okhttp3/curl/logging/MessageFormatter.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.curl.logging
    
    import java.util.logging.LogRecord
    import java.util.logging.SimpleFormatter
    
    object MessageFormatter : SimpleFormatter() {
      override fun format(record: LogRecord): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 860 bytes
    - Viewed (0)
Back to top