Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 155 for parseLink (0.18 sec)

  1. guava/src/com/google/common/primitives/Ints.java

      }
    
      /**
       * Parses the specified string as a signed decimal integer value. The ASCII character {@code '-'}
       * (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of
       * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
       * and returns {@code null} if non-ASCII digits are present in the string.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

            List<Map<String, Object>> docs = JsonPath.from(response).getList("data");
            int prevVal = 0;
            for (Map<String, Object> doc : docs) {
                int sortValue = Integer.parseInt(doc.get(sortField).toString());
                assertTrue(sortValue >= prevVal);
                prevVal = sortValue;
            }
        }
    
        @Test
        public void searchTestWithWildcard() throws Exception {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Ints.java

      }
    
      /**
       * Parses the specified string as a signed decimal integer value. The ASCII character {@code '-'}
       * (<code>'&#92;u002D'</code>) is recognized as the minus sign.
       *
       * <p>Unlike {@link Integer#parseInt(String)}, this method returns {@code null} instead of
       * throwing an exception if parsing fails. Additionally, this method only accepts ASCII digits,
       * and returns {@code null} if non-ASCII digits are present in the string.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			}
    			in.lex()
    			return x
    		default:
    			l := in.parseLine()
    			x.Line = append(x.Line, l)
    			l.Comment().Before = comments
    			comments = nil
    		}
    	}
    }
    
    func (in *input) parseLine() *Line {
    	tok := in.lex()
    	if tok.kind.isEOL() {
    		in.Error("internal parse error: parseLine at end of line")
    	}
    	start := tok.pos
    	end := tok.endPos
    	tokens := []string{tok.text}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @throws NumberFormatException if the string does not contain a valid unsigned {@code int} value
       * @throws NullPointerException if {@code s} is null (in contrast to {@link
       *     Integer#parseInt(String)})
       */
      @CanIgnoreReturnValue
      public static int parseUnsignedInt(String s) {
        return parseUnsignedInt(s, 10);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @throws NumberFormatException if the string does not contain a valid unsigned {@code int} value
       * @throws NullPointerException if {@code s} is null (in contrast to {@link
       *     Integer#parseInt(String)})
       */
      @CanIgnoreReturnValue
      public static int parseUnsignedInt(String s) {
        return parseUnsignedInt(s, 10);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    focus blur",f).bind("cut paste",function(){setTimeout(f,100)}),a(document).bind("ready",f)},numericRangeCheck:function(b,c){var d=a.split(c),e=parseInt(c.substr(3),10);return 1===d.length&&c.indexOf("min")===-1&&c.indexOf("max")===-1&&(d=[c,c]),2===d.length&&(b<parseInt(d[0],10)||b>parseInt(d[1],10))?["out",d[0],d[1]]:0===c.indexOf("min")&&b<e?["min",e]:0===c.indexOf("max")&&b>e?["max",e]:["ok"]},_numSuggestionElements:0,_selectedSuggestion:null,_previousTypedVal:null,suggest:function(b,d,e){var f...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    		}
    		id, err := strconv.ParseInt(fields[2], 10, 64)
    		if err != nil {
    			return nil, errors.Wrapf(err, "error parsing id at line %d", i)
    		}
    		entry := &entry{name: fields[0], id: id}
    		if totalFields == totalFieldsGroup {
    			entry.userNames = strings.Split(fields[3], ",")
    		} else {
    			gid, err := strconv.ParseInt(fields[3], 10, 64)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. pkg/controller/history/controller_history.go

    		return lhs == rhs
    	}
    	if hs, found := lhs.Labels[ControllerRevisionHashLabel]; found {
    		hash, err := strconv.ParseInt(hs, 10, 32)
    		if err == nil {
    			lhsHash = new(uint32)
    			*lhsHash = uint32(hash)
    		}
    	}
    	if hs, found := rhs.Labels[ControllerRevisionHashLabel]; found {
    		hash, err := strconv.ParseInt(hs, 10, 32)
    		if err == nil {
    			rhsHash = new(uint32)
    			*rhsHash = uint32(hash)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  10. src/runtime/pprof/proto.go

    		if !ok {
    			continue
    		}
    		lo, err := strconv.ParseUint(loStr, 16, 64)
    		if err != nil {
    			continue
    		}
    		hi, err := strconv.ParseUint(hiStr, 16, 64)
    		if err != nil {
    			continue
    		}
    		perm := next()
    		if len(perm) < 4 || perm[2] != 'x' {
    			// Only interested in executable mappings.
    			continue
    		}
    		offset, err := strconv.ParseUint(string(next()), 16, 64)
    		if err != nil {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top