Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 283 for curg (0.07 sec)

  1. src/runtime/vdso_freebsd.go

    	for {
    		if timekeepSharedPage.enabled == 0 {
    			return zeroBintime
    		}
    
    		curr := atomic.Load(&timekeepSharedPage.current) // atomic_load_acq_32
    		th := &timehands[curr]
    		gen := atomic.Load(&th.gen) // atomic_load_acq_32
    		bt = th.offset
    
    		if tc, ok := th.getTimecounter(); !ok {
    			return zeroBintime
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. buildscripts/minio-upgrade.sh

    	docker volume prune -f || true
    	docker volume rm $(docker volume ls -q -f dangling=true) || true
    }
    
    verify_checksum_after_heal() {
    	local sum1
    	sum1=$(curl -s "$2" | sha256sum)
    	mc admin heal --json -r "$1" >/dev/null # test after healing
    	local sum1_heal
    	sum1_heal=$(curl -s "$2" | sha256sum)
    
    	if [ "${sum1_heal}" != "${sum1}" ]; then
    		echo "mismatch expected ${sum1_heal}, got ${sum1}"
    		exit 1
    	fi
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller.go

    func (s *Controller) serviceEntryHandler(old, curr config.Config, event model.Event) {
    	log.Debugf("Handle event %s for service entry %s/%s", event, curr.Namespace, curr.Name)
    	currentServiceEntry := curr.Spec.(*networking.ServiceEntry)
    	cs := convertServices(curr)
    	configsUpdated := sets.New[model.ConfigKey]()
    	key := curr.NamespacedName()
    
    	s.mutex.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. docs/vi/docs/features.md

    Bao gồm các thư viện bên ngoài cũng dựa trên Pydantic, như <abbr title="Object-Relational Mapper">ORM</abbr>s, <abbr title="Object-Document Mapper">ODM</abbr>s cho cơ sở dữ liệu.
    
    Nó cũng có nghĩa là trong nhiều trường hợp, bạn có thể truyền cùng object bạn có từ một request **trực tiếp cho cơ sở dữ liệu**, vì mọi thứ được validate tự động.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top