Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 351 for dtoi (0.07 sec)

  1. src/cmd/internal/obj/x86/obj6_test.go

    		}
    		parts := strings.SplitN(line, "\t", 3)
    		if len(parts) != 3 {
    			continue
    		}
    		n := normalize(parts[2])
    		mark_matches := marker.FindStringSubmatch(n)
    		if mark_matches != nil {
    			mark, _ = strconv.Atoi(mark_matches[1])
    			if _, ok := td.marker_to_input[mark]; !ok {
    				t.Fatalf("unexpected marker %d", mark)
    			}
    		} else if mark != -1 {
    			td.marker_to_output[mark] = append(td.marker_to_output[mark], n)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  2. pkg/util/procfs/procfs_linux.go

    		if err != nil {
    			return nil
    		}
    
    		for _, entry := range ls {
    			if !entry.IsDir() {
    				continue
    			}
    
    			// If the directory is not a number (i.e. not a PID), skip it
    			pid, err := strconv.Atoi(entry.Name())
    			if err != nil {
    				continue
    			}
    
    			cmdline, err := os.ReadFile(filepath.Join("/proc", entry.Name(), "cmdline"))
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pkg/kube/apimirror/probe.go

    		return json.Marshal(intstr.StrVal)
    	default:
    		return []byte{}, fmt.Errorf("impossible IntOrString.Type")
    	}
    }
    
    func (intstr *IntOrString) IntValue() int {
    	if intstr.Type == String {
    		i, _ := strconv.Atoi(intstr.StrVal)
    		return i
    	}
    	return int(intstr.IntVal)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/env/var.go

    	result, ok := os.LookupEnv(v.Name)
    	if !ok {
    		result = v.DefaultValue
    	}
    
    	i, err := strconv.Atoi(result)
    	if err != nil {
    		log.Warnf("Invalid environment variable value `%s`, expecting an integer, defaulting to %v", result, v.DefaultValue)
    		i, _ = strconv.Atoi(v.DefaultValue)
    	}
    
    	return i, ok
    }
    
    // Get retrieves the value of the environment variable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/http.go

    	}
    
    	n, err := strconv.Atoi(flavor[0])
    	if err != nil {
    		return codeAndSlices{http.StatusBadRequest, 9999}, err
    	}
    
    	if n < http.StatusOK || n >= 600 {
    		return codeAndSlices{http.StatusBadRequest, 9999},
    			fmt.Errorf("invalid HTTP response code %v", n)
    	}
    
    	count := 1
    	if len(flavor) > 1 {
    		count, err = strconv.Atoi(flavor[1])
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    	}
    
    	parts := strings.Split(ver, ".")
    	// we are guaranteed to have at least major and minor based on the regex
    	major, _ := strconv.Atoi(parts[0])
    	minor, _ := strconv.Atoi(parts[1])
    	// Assume very large patch release if not set
    	patch := 65535
    	if len(parts) > 2 {
    		patch, _ = strconv.Atoi(parts[2])
    	}
    	return &IstioVersion{Major: major, Minor: minor, Patch: patch}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  7. cmd/kube-proxy/app/conntrack.go

    	}
    
    	return false, errors.New("no sysfs mounted")
    }
    
    func readIntStringFile(filename string) (int, error) {
    	b, err := os.ReadFile(filename)
    	if err != nil {
    		return -1, err
    	}
    	return strconv.Atoi(strings.TrimSpace(string(b)))
    }
    
    func writeIntStringFile(filename string, value int) error {
    	return os.WriteFile(filename, []byte(strconv.Itoa(value)), 0640)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. docs/vi/docs/tutorial/index.md

    ## Chạy mã
    
    Tất cả các code block có thể được sao chép và sử dụng trực tiếp (chúng thực chất là các tệp tin Python đã được kiểm thử).
    
    Để chạy bất kì ví dụ nào, sao chép code tới tệp tin `main.py`, và bắt đầu `uvicorn` với:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/encoding/asn1/common.go

    			i, err := strconv.ParseInt(part[8:], 10, 64)
    			if err == nil {
    				ret.defaultValue = new(int64)
    				*ret.defaultValue = i
    			}
    		case strings.HasPrefix(part, "tag:"):
    			i, err := strconv.Atoi(part[4:])
    			if err == nil {
    				ret.tag = new(int)
    				*ret.tag = i
    			}
    		case part == "set":
    			ret.set = true
    		case part == "application":
    			ret.application = true
    			if ret.tag == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. docs/debugging/s3-check-md5/main.go

    				continue
    			}
    			parts := 1
    			multipart := false
    			s := strings.Split(object.ETag, "-")
    			switch len(s) {
    			case 1:
    				// nothing to do
    			case 2:
    				if p, err := strconv.Atoi(s[1]); err == nil {
    					parts = p
    				} else {
    					log.Println("FAILED: ETAG of", objFullPath(object), "has a wrong format:", err)
    					continue
    				}
    				multipart = true
    			default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 17 01:15:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top