Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for mcurl (0.04 sec)

  1. samples/httpbin/README.md

    ```bash
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/html
    kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent --head httpbin:8000/status/500
    time kubectl run -i --rm --restart=Never dummy --image=dockerqa/curl:ubuntu-trusty --command -- curl --silent httpbin:8000/delay/5
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. bin/init.sh

    # Gets the download command supported by the system (currently either curl or wget)
    DOWNLOAD_COMMAND=""
    function set_download_command () {
      # Try curl.
      if command -v curl > /dev/null; then
        if curl --version | grep Protocols  | grep https > /dev/null; then
          DOWNLOAD_COMMAND="curl -fLSs --retry 5 --retry-delay 1 --retry-connrefused"
          return
        fi
        echo curl does not support https, will try wget for downloading files.
      else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 19:11:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. okcurl/build.gradle.kts

    animalsniffer {
      isIgnoreFailures = true
    }
    
    tasks.jar {
      manifest {
        attributes("Automatic-Module-Name" to "okhttp3.curl")
        attributes("Main-Class" to "okhttp3.curl.MainCommandLineKt")
      }
    }
    
    tasks.shadowJar {
      mergeServiceFiles()
    }
    
    graal {
      mainClass("okhttp3.curl.MainCommandLineKt")
      outputName("okcurl")
      graalVersion(libs.versions.graalvm.get())
      javaVersion("11")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. hack/get-build.sh

    else
      echo "Using version at ${1}: ${KUBE_VERSION}" >&2
      if [[ ${KUBE_VERSION} =~ ${KUBE_RELEASE_VERSION_REGEX} ]]; then
        curl -L --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_RELEASE_BUCKET_URL}/release/${KUBE_VERSION}/${KUBE_TAR_NAME}"
      elif [[ ${KUBE_VERSION} =~ ${KUBE_CI_VERSION_REGEX} ]]; then
        curl --fail -o "kubernetes-${KUBE_VERSION}.tar.gz" "${KUBE_DEV_RELEASE_BUCKET_URL}/ci/${KUBE_VERSION}/${KUBE_TAR_NAME}"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. samples/extauthz/README.md

        $ kubectl exec -it $(kubectl get pod -l app=sleep -o jsonpath={.items..metadata.name}) -c sleep -- curl -v ext-authz:8000 -H "x-ext-authz: allow"
           *   Trying 10.97.88.183:8000...
           * Connected to ext-authz-server (10.97.88.183) port 8000 (#0)
           > GET / HTTP/1.1
           > Host: ext-authz-server:8000
           > User-Agent: curl/7.73.0-DEV
           > Accept: */*
           > x-ext-authz: allow
           >
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. cluster/get-kube.sh

          curl_headers="Authorization: Bearer $(gcloud auth print-access-token)"
        fi
        curl ${curl_headers:+-H "${curl_headers}"} -fL --retry 3 --keepalive-time 2 "${kubernetes_tar_url}" -o "${file}"
      elif [[ $(which wget) ]]; then
        wget "${kubernetes_tar_url}"
      else
        echo "Couldn't find gsutil, curl, or wget.  Bailing out."
        exit 1
      fi
    fi
    
    echo "Unpacking kubernetes release ${KUBE_VERSION}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. cluster/gce/windows/smoke-test.sh

        -o jsonpath='{.spec.ports[?(@.protocol=="TCP")].port}')
      echo "curl-ing $service address from Linux pod: $service_ip:$service_port"
    
      # curl-ing the metrics-server service downloads 14 bytes of unprintable binary
      # data and sets a return code of success (0).
      if ! $kubectl exec "$linux_command_pod" -- \
          curl -s -m 20 --insecure "https://$service_ip:$service_port" &> $output_file; then
        cleanup_deployments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. release/downloadIstioCandidate.sh

    with_arch() {
      printf "\nDownloading %s from %s ...\n" "$NAME" "$ARCH_URL"
      if ! curl -o /dev/null -sIf "$ARCH_URL"; then
        printf "\n%s is not found, please specify a valid ISTIO_VERSION and TARGET_ARCH\n" "$ARCH_URL"
        exit 1
      fi
      curl -fsLO "$ARCH_URL"
      filename="istio-${ISTIO_VERSION}-${OSEXT}-${ISTIO_ARCH}.tar.gz"
      tar -xzf "${filename}"
      rm "${filename}"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. samples/sleep/README.md

    # Simple sleep service
    
    This sample consists of a simple service that does nothing but sleep.
    It's a ubuntu container with curl installed that can be used as a request source for invoking other services
    to experiment with Istio networking.
    
    To use it:
    
    1. Install Istio by following the [istio install instructions](https://istio.io/docs/setup/).
    
    1. Start the sleep service:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 03 03:51:51 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. tools/gen_istio_image_list.sh

                latest_tag=$tag
             fi
          fi
        done
        echo "$latest_tag"
    }
    
    function get_istio_addons() {
        branches=$(curl --silent "${ISTIO_HELM_CHART}?ref=${1}" | grep '"name": *' | tr -d '", ')
        for branch in ${branches}; do
            REPO=${branch##name:}
            curl --silent "${ISTIO_GITHUB}/${1}/install/kubernetes/helm/istio/charts/${REPO}/values.yaml" -o temp.file
            
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top