Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for mcurl (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/test/echo/docker/Dockerfile.app_sidecar_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 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. samples/helloworld/loadgen.sh

    #   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.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 675 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

            "@com_google_protobuf//:__subpackages__",
            "@com_googlesource_code_re2//:__subpackages__",
            "@compute_library//:__subpackages__",
            "@cpuinfo//:__subpackages__",
            "@curl//:__subpackages__",
            "@double_conversion//:__subpackages__",
            "@eigen_archive//:__subpackages__",
            "@farmhash_archive//:__subpackages__",
            "@farmhash_gpu_archive//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. docs/lambda/README.md

    	if err != nil {
    		log.Fatalln(err)
    	}
    	fmt.Println(presignedURL)
    }
    ```
    
    Use the Presigned URL via `curl` to receive the transformed object.
    ```
    curl -v $(go run presigned.go)
    ...
    ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top