Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 230 for curly (0.14 sec)

  1. cluster/gce/gci/flexvolume_node_setup.sh

    echo
    
    METADATA=http://metadata.google.internal/computeMetadata/v1
    SVC_ACCT_ENDPOINT=$METADATA/instance/service-accounts/default
    ACCESS_TOKEN=$(curl -s -H 'Metadata-Flavor: Google' $SVC_ACCT_ENDPOINT/token | cut -d'"' -f 4)
    PROJECT_ID=$(curl -s -H 'Metadata-Flavor: Google' $METADATA/project/project-id)
    IMAGE_URL=gcr.io/${PROJECT_ID}/${MOUNTER_IMAGE}
    MOUNTER_DEFAULT_NAME=flexvolume_mounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.packages.txt

    # Other build-related tools
    autoconf
    automake
    build-essential
    ca-certificates
    llvm-17
    clang-17
    clang-format-12
    lld-17
    colordiff
    curl
    ffmpeg
    gdb
    git
    jq
    less
    libcurl3-dev
    libcurl4-openssl-dev
    libfreetype6-dev
    libhdf5-serial-dev
    libomp-17-dev
    libssl-dev
    libtool
    libxml2-dev
    libxslt1-dev
    libzmq3-dev
    mlocate
    moreutils
    openjdk-11-jdk
    openjdk-11-jre-headless
    openssl
    patchelf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 485 bytes
    - Viewed (0)
  3. mvnw

            fi
        elif command -v curl > /dev/null; then
            log "Found curl ... using curl"
            [ "$MVNW_VERBOSE" = true ] && QUIET="" || QUIET="--silent"
            if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
                curl $QUIET -o "$wrapperJarPath" "$wrapperUrl" -f -L || rm -f "$wrapperJarPath"
            else
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure.sh

        # shellcheck disable=SC2086
        retry-forever 10 curl ${CURL_FLAGS} \
          -H "X-Google-Metadata-Request: True" \
          -o "${tmp_kubelet_config}" \
          http://metadata.google.internal/computeMetadata/v1/instance/attributes/kubelet-config
        # only write to the final location if curl succeeds
        mv "${tmp_kubelet_config}" "${dest}"
      )
    }
    
    function download-kube-master-certs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. docs/works_with_okhttp.md

     * ⬜️ [Moshi](https://github.com/square/moshi): A modern JSON library for Android and Java.
     * [Ok2Curl](https://github.com/mrmike/Ok2Curl): Convert OkHttp requests into curl logs.
     * [OkHttp AWS Signer](https://github.com/babbel/okhttp-aws-signer): AWS V4 signing algorithm for OkHttp requests
     * [okhttp-digest](https://github.com/rburgst/okhttp-digest): A digest authenticator for OkHttp.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jun 08 18:15:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. okcurl/src/main/kotlin/okhttp3/curl/MainCommandLine.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
    
    import kotlin.system.exitProcess
    
    fun main(args: Array<String>) {
      Main().main(args)
      exitProcess(0)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 728 bytes
    - Viewed (0)
  7. okcurl/src/test/kotlin/okhttp3/curl/OkcurlTest.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
    
    import kotlin.test.Test
    
    class OkcurlTest {
      @Test
      fun simple() {
        Main().main(listOf("--help"))
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 732 bytes
    - Viewed (0)
  8. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DohProviders.kt

    import java.net.UnknownHostException
    import okhttp3.HttpUrl.Companion.toHttpUrl
    import okhttp3.OkHttpClient
    
    /**
     * Temporary registry of known DNS over HTTPS providers.
     *
     * https://github.com/curl/curl/wiki/DNS-over-HTTPS
     */
    object DohProviders {
      private fun buildGoogle(bootstrapClient: OkHttpClient): DnsOverHttps {
        return DnsOverHttps.Builder()
          .client(bootstrapClient)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 10:26:25 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/CurlResponse.java

     */
    package org.codelibs.curl;
    
    import java.io.BufferedInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.Closeable;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.function.Function;
    
    import org.codelibs.curl.io.ContentCache;
    
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. samples/sleep/sleep-vault.yaml

          app: sleep
      template:
        metadata:
          labels:
            app: sleep
        spec:
          serviceAccountName: vault-citadel-sa
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
            imagePullPolicy: IfNotPresent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top