Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 351 for dtoi (0.05 sec)

  1. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    				dr.p, dr.ln, line)
    		}
    		tag := fields[1]
    		flagstr := fields[5]
    		flags, err := strconv.Atoi(flagstr)
    		if err != nil {
    			return funcInlHeur, nil, fmt.Errorf("bad flags val %s line %d: %q err=%v",
    				dr.p, dr.ln, line, err)
    		}
    		scorestr := fields[7]
    		score, err2 := strconv.Atoi(scorestr)
    		if err2 != nil {
    			return funcInlHeur, nil, fmt.Errorf("bad score val %s line %d: %q err=%v",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. src/runtime/string.go

    	}
    
    	n := int64(un)
    	if neg {
    		n = -n
    	}
    
    	return n, true
    }
    
    // atoi is like atoi64 but for integers
    // that fit into an int.
    func atoi(s string) (int, bool) {
    	if n, ok := atoi64(s); n == int64(int(n)) {
    		return int(n), ok
    	}
    	return 0, false
    }
    
    // atoi32 is like atoi but for integers
    // that fit into an int32.
    func atoi32(s string) (int32, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. src/syscall/dirent_test.go

    		}
    	}
    
    	slices.Sort(names)
    	t.Logf("names: %q", names)
    
    	if len(names) != 10 {
    		t.Errorf("got %d names; expected 10", len(names))
    	}
    	for i, name := range names {
    		ord, err := strconv.Atoi(name[:1])
    		if err != nil {
    			t.Fatalf("names[%d] is non-integer %q: %v", i, names[i], err)
    		}
    		if expected := strings.Repeat(name[:1], filenameMinSize+ord); name != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    	}
    }
    
    func queueReplicateDeletesWrapper(doi DeletedObjectReplicationInfo, existingObjectResync ResyncDecision) {
    	for k, v := range existingObjectResync.targets {
    		if v.Replicate {
    			doi.ResetID = v.ResetID
    			doi.TargetArn = k
    
    			globalReplicationPool.queueReplicaDeleteTask(doi)
    		}
    	}
    }
    
    func (p *ReplicationPool) queueReplicaDeleteTask(doi DeletedObjectReplicationInfo) {
    	if p == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/net/platform_test.go

    		out, _ := exec.Command("oslevel", "-s").Output()
    		if len(out) >= len("7200-XX-ZZ-YYMM") { // AIX 7.2, Tech Level XX, Service Pack ZZ, date YYMM
    			aixVer := string(out[:4])
    			tl, _ := strconv.Atoi(string(out[5:7]))
    			unixEnabledOnAIX = aixVer > "7200" || (aixVer == "7200" && tl >= 2)
    		}
    	}
    }
    
    // testableNetwork reports whether network is testable on the current
    // platform configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. internal/config/storageclass/storage-class_test.go

    		},
    		{
    			"EC:4:5",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New("Too many sections in EC:4:5"),
    		},
    		{
    			"EC:A",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New(`strconv.Atoi: parsing "A": invalid syntax`),
    		},
    		{
    			"AB",
    			StorageClass{
    				Parity: 4,
    			},
    			errors.New("Too few sections in AB"),
    		},
    	}
    	for i, tt := range tests {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/retry/retry.go

    	for _, part := range parts {
    		part = strings.TrimSpace(part)
    		if part == "" {
    			continue
    		}
    
    		// Try converting it to an integer to see if it's a valid HTTP status code.
    		i, err := strconv.Atoi(part)
    
    		if err == nil && http.StatusText(i) != "" {
    			codes = append(codes, uint32(i))
    		} else {
    			tojoin = append(tojoin, part)
    		}
    	}
    
    	return strings.Join(tojoin, ","), codes
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/go.go

    	parts := strings.Split(lib, ".")
    	if len(parts) != 4 {
    		return "", false
    	}
    	if parts[1] != "so" {
    		return "", false
    	}
    	if _, err := strconv.Atoi(parts[2]); err != nil {
    		return "", false
    	}
    	if _, err := strconv.Atoi(parts[3]); err != nil {
    		return "", false
    	}
    	return fmt.Sprintf("%s.%s", parts[0], parts[1]), true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. pkg/volume/util/fsquota/project.go

    		i, err := strconv.Atoi(match[1])
    		if err == nil {
    			return projectType{true, common.QuotaID(i), match[2], l}
    		}
    	}
    	return projectType{true, common.BadQuotaID, "", l}
    }
    
    func parseProjid(l string) projectType {
    	if match := projidParseRegexp.FindStringSubmatch(l); match != nil {
    		i, err := strconv.Atoi(match[2])
    		if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32.go

    	IEEE = 0xedb88320
    
    	// Castagnoli's polynomial, used in iSCSI.
    	// Has better error detection characteristics than IEEE.
    	// https://dx.doi.org/10.1109/26.231911
    	Castagnoli = 0x82f63b78
    
    	// Koopman's polynomial.
    	// Also has better error detection characteristics than IEEE.
    	// https://dx.doi.org/10.1109/DSN.2002.1028931
    	Koopman = 0xeb31d82e
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top