Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for parseList (0.35 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

                super(GRADLE_PROPERTY);
            }
    
            @Override
            public void applyTo(String value, DaemonParameters settings, Origin origin) {
                try {
                    settings.setIdleTimeout(Integer.parseInt(value));
                } catch (NumberFormatException e) {
                    origin.handleInvalidValue(value, "the value should be an int");
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/time/format_test.go

    		}
    	}
    }
    
    type ParseTest struct {
    	name       string
    	format     string
    	value      string
    	hasTZ      bool // contains a time zone
    	hasWD      bool // contains a weekday
    	yearSign   int  // sign of year, -1 indicates the year is not present in the format
    	fracDigits int  // number of digits of fractional second
    }
    
    var parseTests = []ParseTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. src/encoding/json/decode.go

    			n, err := strconv.ParseInt(string(item), 10, 64)
    			if err != nil || v.OverflowInt(n) {
    				d.saveError(&UnmarshalTypeError{Value: "number " + string(item), Type: v.Type(), Offset: int64(d.readIndex())})
    				break
    			}
    			v.SetInt(n)
    
    		case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
    			n, err := strconv.ParseUint(string(item), 10, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    2&&e.length%2!==0)return void this.clear();f=d[1]?d[1].toString():"",g=d[2]?d[2].toString():"",e.length>4&&(g=e.slice(-2),e=e.slice(0,-2)),e.length>2&&(f=e.slice(-2),e=e.slice(0,-2)),f.length>2&&(g=f.slice(-2),f=f.slice(0,-2)),e=parseInt(e,10),f=parseInt(f,10),g=parseInt(g,10),isNaN(e)&&(e=0),isNaN(f)&&(f=0),isNaN(g)&&(g=0),g>59&&(g=59),f>59&&(f=59),e>=this.maxHours&&(e=this.maxHours-1),this.showMeridian?(e>12&&(c=2,e-=12),c||(c=1),0===e&&(e=12),h=1===c?"AM":"PM"):12>e&&2===c?e+=12:e>=this.maxHo...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  5. internal/jwt/parser.go

    					return errors.New("exp: Expected number")
    				}
    				c.ExpiresAt, err = jsonparser.ParseInt(value)
    				return err
    			}
    		case 'i':
    			if string(key) == "iat" {
    				if dataType != jsonparser.Number {
    					return errors.New("exp: Expected number")
    				}
    				c.IssuedAt, err = jsonparser.ParseInt(value)
    				return err
    			}
    			if string(key) == "iss" {
    				if dataType != jsonparser.String {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/Config.java

         */
    
        public static int getInt( String key, int def ) {
            String s = prp.getProperty( key );
            if( s != null ) {
                try {
                    def = Integer.parseInt( s );
                } catch( NumberFormatException nfe ) {
                    if( log.level > 0 )
                        nfe.printStackTrace( log );
                }
            }
            return def;
        }
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    func (p *Parser) positiveAtoi(str string) int64 {
    	value, err := strconv.ParseInt(str, 0, 64)
    	if err != nil {
    		p.errorf("%s", err)
    	}
    	if value < 0 {
    		p.errorf("%s overflows int64", str)
    	}
    	return value
    }
    
    func (p *Parser) atoi(str string) uint64 {
    	value, err := strconv.ParseUint(str, 0, 64)
    	if err != nil {
    		p.errorf("%s", err)
    	}
    	return value
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/text/template/parse/parse_test.go

    			t.Errorf("did not expect complex for %q", test.text)
    		}
    	}
    }
    
    type parseTest struct {
    	name   string
    	input  string
    	ok     bool
    	result string // what the user would see in an error message.
    }
    
    const (
    	noError  = true
    	hasError = false
    )
    
    var parseTests = []parseTest{
    	{"empty", "", noError,
    		``},
    	{"comment", "{{/*\n\n\n*/}}", noError,
    		``},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cgroup_manager_linux.go

    	}
    	cpuLimit := int64(-1)
    	if cpuLimitStr != Cgroup2MaxCpuLimit {
    		cpuLimit, err = strconv.ParseInt(cpuLimitStr, 10, 64)
    		if err != nil {
    			return nil, fmt.Errorf("failed to convert CPU limit as integer for cgroup %v: %v", cgroupPath, err)
    		}
    	}
    	cpuPeriod, errPeriod := strconv.ParseUint(cpuPeriodStr, 10, 64)
    	if errPeriod != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse.go

    			match := declareChainRegex.FindStringSubmatch(line)
    			if match == nil {
    				state = parseChains
    				goto retry
    			}
    
    			chain := iptables.Chain(match[1])
    			packets, _ := strconv.ParseUint(match[2], 10, 64)
    			bytes, _ := strconv.ParseUint(match[3], 10, 64)
    
    			t.Chains = append(t.Chains,
    				Chain{
    					Name:    chain,
    					Packets: packets,
    					Bytes:   bytes,
    				},
    			)
    
    		case parseChains:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top