Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 230 for curly (0.04 sec)

  1. src/main/java/org/codelibs/curl/CurlException.java

     * 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 org.codelibs.curl;
    
    public class CurlException extends RuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        public CurlException(final String message, final Throwable cause) {
            super(message, cause);
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 950 bytes
    - Viewed (0)
  2. samples/sleep/notsleep.yaml

                      - productpage
                  topologyKey: kubernetes.io/hostname 
          terminationGracePeriodSeconds: 0
          serviceAccountName: notsleep
          containers:
          - name: notsleep
            image: curlimages/curl
            command: ["/bin/sleep", "3650d"]
            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: Mon Feb 27 20:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. hack/verify-licenses.sh

    cd "${KUBE_TEMP}"/tmp_test_licenses/kubernetes && rm -rf vendor
    
    # Ensure that we find the binaries we build before anything else.
    export GOBIN="${KUBE_OUTPUT_BIN}"
    PATH="${GOBIN}:${PATH}"
    
    function http_code() {
        curl -I -s -o /dev/null -w "%{http_code}" "$1"
    }
    
    packages_flagged=()
    packages_url_missing=()
    exit_code=0
    
    # Install go-licenses
    echo '[INFO] Installing go-licenses...'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. docker/Dockerfile.base

    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
      apt-get install --no-install-recommends -y \
      ca-certificates \
      curl \
      iptables \
      iproute2 \
      iputils-ping \
      knot-dnsutils \
      netcat-openbsd \
      tcpdump \
      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/esreq/AdminEsreqAction.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.io.CopyUtil;
    import org.codelibs.core.io.ReaderUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.curl.CurlRequest;
    import org.codelibs.curl.CurlResponse;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.helper.CurlHelper;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. samples/helloworld/README.md

    to set the INGRESS_HOST and INGRESS_PORT variables and then confirm the sample is running using curl:
    
    ```bash
    export GATEWAY_URL=$INGRESS_HOST:$INGRESS_PORT
    curl http://$GATEWAY_URL/hello
    ```
    
    ## Autoscale the services
    
    Note that a Kubernetes [Horizontal Pod Autoscaler](https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. docs/sts/tls.md

    a client certificate.
    
    The following curl example shows how to authenticate to a MinIO server with client certificate and obtain STS access credentials.
    
    ```curl
    curl -X POST --key private.key --cert public.crt "https://minio:9000?Action=AssumeRoleWithCertificate&Version=2011-06-15&DurationSeconds=3600"
    ```
    
    ```xml
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  8. samples/open-telemetry/als/README.md

    Following [doc](../../httpbin/README.md), start the `fortio` and `httpbin` services.
    
    Run the following script to request `httpbin` from `fortio`.
    
    ```bash
    kubectl exec -it $(kubectl get po | grep fortio | awk '{print $1}') -- fortio curl httpbin:8000/ip
    ```
    
    Run the following script to checkout ALS output.
    
    ```bash
    kubectl logs $(kubectl get po -n observability | grep otel | awk '{print $1}') -n observability
    ```
    
    ## Cleanup
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. common/scripts/check_clean_repo.sh

        echo "You can also try applying the patch file from the build artifacts:
    
    git apply <(curl -sL \"${patchFile}\")
    "
    }
    
    if [[ -n $(git status --porcelain) ]]; then
      git status
      git diff
      echo "ERROR: Some files need to be updated, please run 'make gen' and include any changed files in your PR"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 11 22:57:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. hack/lib/util.sh

      local url=$1
      local prefix=${2:-}
      local wait=${3:-1}
      local times=${4:-30}
      local maxtime=${5:-1}
    
      command -v curl >/dev/null || {
        kube::log::usage "curl must be installed"
        exit 1
      }
    
      local i
      for i in $(seq 1 "${times}"); do
        local out
        if out=$(curl --max-time "${maxtime}" -gkfs "${@:6}" "${url}" 2>/dev/null); then
          kube::log::status "On try ${i}, ${prefix}: ${out}"
          return 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top