Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Parsenum (0.23 sec)

  1. src/fmt/print.go

    // too large to be used as a formatting width or precision.
    func tooLarge(x int) bool {
    	const max int = 1e6
    	return x > max || x < -max
    }
    
    // parsenum converts ASCII to integer.  num is 0 (and isnum is false) if no number present.
    func parsenum(s string, start, end int) (num int, isnum bool, newi int) {
    	if start >= end {
    		return 0, false, end
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    						},
    					},
    				}
    
    				for caseNum, content := range iamTestContentCases {
    					suite.SetUpSuite(c)
    					suite.SetUpLDAP(c, ldapServer)
    					exportedContent := suite.TestIAMExport(c, caseNum, content)
    					suite.TearDownSuite(c)
    					suite.SetUpSuite(c)
    					suite.SetUpLDAP(c, ldapServer)
    					suite.TestIAMImport(c, exportedContent, caseNum, content)
    					suite.TearDownSuite(c)
    				}
    			},
    		)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
Back to top