Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 391 for curg (0.05 sec)

  1. release/downloadIstioCtl.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
      filename="istioctl-${ISTIO_VERSION}-${OSEXT}-${ISTIO_ARCH}.tar.gz"
      curl -fsL -o "${tmp}/${filename}" "$ARCH_URL"
      tar -xzf "${tmp}/${filename}" -C "${tmp}"
    }
    
    without_arch() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    	/*
    		// Write the sparse map and setup the sparse writer if necessary.
    		if len(spd) > 0 {
    			// Use tw.curr since the sparse map is accounted for in hdr.Size.
    			if _, err := tw.curr.Write(spb); err != nil {
    				return err
    			}
    			tw.curr = &sparseFileWriter{tw.curr, spd, 0}
    		}
    	*/
    	return nil
    }
    
    func (tw *Writer) writeGNUHeader(hdr *Header) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. docs/vi/docs/tutorial/index.md

    ---> 100%
    ```
    
    </div>
    
    ...dó cũng bao gồm `uvicorn`, bạn có thể sử dụng như một server để chạy code của bạn.
    
    !!! note
        Bạn cũng có thể cài đặt nó từng phần.
    
        Đây là những gì bạn có thể sẽ làm một lần duy nhất bạn muốn triển khai ứng dụng của bạn lên production:
    
        ```
        pip install fastapi
        ```
    
        Cũng cài đặt `uvicorn` để làm việc như một server:
    
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/compress/flate/deflatefast.go

    func (e *deflateFast) reset() {
    	e.prev = e.prev[:0]
    	// Bump the offset, so all matches will fail distance check.
    	// Nothing should be >= e.cur in the table.
    	e.cur += maxMatchOffset
    
    	// Protect against e.cur wraparound.
    	if e.cur >= bufferReset {
    		e.shiftOffsets()
    	}
    }
    
    // shiftOffsets will shift down all match offset.
    // This is only called in rare situations to prevent integer overflow.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  5. samples/helloworld/gateway-api/README.md

    ```bash
    kubectl wait --for=condition=ready gtw helloworld-gateway
    export INGRESS_HOST=$(kubectl get gtw helloworld-gateway -o jsonpath='{.status.addresses[*].value}')
    ```
    
    Confirm the sample is running using curl:
    
    ```bash
    for run in {1..10}; do curl http://$INGRESS_HOST/hello; done
    ```
    
    Since no version routing has been configured, you should see an equal split of traffic, about half handled by helloworld-v1 and the other half handled by helloworld-v2.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. docs/metrics/healthcheck/README.md

      successThreshold: 1
      failureThreshold: 3
    ```
    
    ## Cluster probe
    
    ### Cluster-writeable probe
    
    The reply is '200 OK' if cluster has write quorum if not it returns '503 Service Unavailable'.
    
    ```
    curl http://minio1:9001/minio/health/cluster
    HTTP/1.1 503 Service Unavailable
    Accept-Ranges: bytes
    Content-Length: 0
    Server: MinIO
    Vary: Origin
    X-Amz-Bucket-Region: us-east-1
    X-Minio-Write-Quorum: 3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jul 06 16:18:38 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/Trie.java

                return false;
            }
            int idx = 0;
            Trie cur = this;
            while (idx < seq.length()) {
                char c = seq.charAt(idx);
                boolean found = false;
                for (Trie transition : cur.transitions) {
                    if (transition.c == c) {
                        cur = transition;
                        idx++;
                        found = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    		})
    	}
    
    	for _, curM := range r.buildList {
    		if !q.matchesPath(curM.Path) {
    			continue
    		}
    		q.pathOnce(curM.Path, func() pathSet {
    			if modload.HasModRoot() && curM.Version == "" && modload.MainModules.Contains(curM.Path) {
    				return errSet(&modload.QueryMatchesMainModulesError{MainModules: []module.Version{curM}, Pattern: q.pattern, Query: q.version})
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. security/tools/jwt/samples/README.md

    }
    ```
    
    Note the expiration date (`exp`) is very long in the future, so it can be tested as is without any modification. For example:
    
    ```bash
    TOKEN=$(curl https://raw.githubusercontent.com/istio/istio/master/security/tools/jwt/samples/demo.jwt -s)
    curl --header "Authorization: Bearer $TOKEN" $INGRESS_HOST/headers -s -o /dev/null -w "%{http_code}\n"
    ```
    
    Alternatively, you can use the `gen-jwt.py` script to create new test token:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 24 15:56:06 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/python/testing.py

        dictionaries.
      """
      real_parameters = []
      for parameters in test_parameters:
        keys = parameters.keys()
        for curr in itertools.product(*parameters.values()):
          real_parameters.append(dict(zip(keys, curr)))
      return real_parameters
    
    
    def get_dir_size(path: str = '.') -> int:
      """Get the total size of files and sub-directories under the path.
    
      Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top