Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for RangeTs (0.19 sec)

  1. okhttp/src/test/java/okhttp3/internal/idn/IdnaMappingTableTest.kt

        assertThat(compactTable.ranges.length).isLessThan((1 shl 14) * 4)
    
        // Less than 16,384 chars, because we index on a 14-bit index in the ranges table.
        assertThat(compactTable.mappings.length).isLessThan(1 shl 14)
    
        // Confirm the data strings are ASCII.
        for (dataString in listOf<String>(compactTable.sections, compactTable.ranges)) {
          for (codePoint in dataString.codePoints()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *
     * b0b1s7 is the section prefix. If a section is omitted, that means its ranges data exactly matches
     * that of the preceding section.
     *
     * b2b3s2 is the offset into the ranges data. It is shifted by 2 because ranges are 4-byte aligned.
     *
     * Mappings Data (4,719 bytes)
     * ===========================
     *
     * This is UTF-8 character data. It is indexed into by b2b3 in the ranges dataset.
     *
     * Mappings may overlap.
     *
     * ASCII-Only
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/deprecationFromLibrary.txt

        DEPRECATION      text ranges: [(302,320)]
          PSI: KtNameReferenceExpression at (71,21-39)
      for PSI element of type KtNameReferenceExpression at (72,21-39)
        DEPRECATION      text ranges: [(352,370)]
          PSI: KtNameReferenceExpression at (72,21-39)
      for PSI element of type KtNameReferenceExpression at (74,21-40)
        DEPRECATION      text ranges: [(396,415)]
          PSI: KtNameReferenceExpression at (74,21-40)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramSource.kt

        }
    
        internal
        fun erase(ranges: List<IntRange>): ProgramText =
            if (ranges.isEmpty()) this
            else ProgramText(text.erase(ranges))
    
        fun preserve(vararg ranges: IntRange): ProgramText =
            erase(complementOf(ranges))
    
        internal
        fun preserve(ranges: List<IntRange>): ProgramText =
            preserve(*ranges.toTypedArray())
    
        fun subText(range: IntRange): ProgramText =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

      return result.toMap()
    }
    
    /**
     * Modifies [ranges] to combine any adjacent [MappedRange.InlineDelta] of same size to single entry.
     * @returns same instance of [ranges] for convenience
     */
    internal fun mergeAdjacentDeltaMappedRanges(ranges: MutableList<MappedRange>): MutableList<MappedRange> {
      var i = 0
      while (i < ranges.size) {
        val curr = ranges[i]
        if (curr is MappedRange.InlineDelta) {
          val j = i + 1
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/duplicatedCallableWithImplicitType.descriptors.txt

        TYPE_MISMATCH      text ranges: [(97,159)]
          PSI: KtCallExpression at (23,20) - (26,2)
      for PSI element of type KtLambdaExpression at (23,24) - (26,2)
        TYPE_MISMATCH      text ranges: [(101,159)]
          PSI: KtLambdaExpression at (23,24) - (26,2)
      for PSI element of type KtNameReferenceExpression at (24,5-17)
        UNRESOLVED_REFERENCE      text ranges: [(107,119)]
          PSI: KtNameReferenceExpression at (24,5-17)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 688 bytes
    - Viewed (0)
  7. src/regexp/syntax/make_perl_groups.pl

      }
      return @ranges;
    }
    
    sub PrintClass($$@) {
      my ($cname, $name, @ranges) = @_;
      print "var code$cname = []rune{  /* $name */\n";
      for (my $i=0; $i<@ranges; $i++) {
        my @a = @{$ranges[$i]};
        printf "\t0x%x, 0x%x,\n", $a[0], $a[1];
      }
      print "}\n\n";
      my $n = @ranges;
      my $negname = $name;
      if ($negname =~ /:/) {
        $negname =~ s/:/:^/;
      } else {
        $negname =~ y/a-z/A-Z/;
      }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    t)plot.getPlaceholder().trigger("plotunselected",[])}}function extractRange(ranges,coord){var axis,from,to,key,axes=plot.getAxes();for(var k in axes){axis=axes[k];if(axis.direction==coord){key=coord+axis.n+"axis";if(!ranges[key]&&axis.n==1)key=coord+"axis";if(ranges[key]){from=ranges[key].from;to=ranges[key].to;break}}}if(!ranges[key]){axis=coord=="x"?plot.getXAxes()[0]:plot.getYAxes()[0];from=ranges[coord+"1"];to=ranges[coord+"2"]}if(from!=null&&to!=null&&from>to){var tmp=from;from=to;to=tmp}re...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedAnnotationsOnPropertyFromParameter.txt

        UNRESOLVED_REFERENCE      text ranges: [(23,35)]
          PSI: KtNameReferenceExpression at (2,15-27)
      for PSI element of type KtNameReferenceExpression at (3,10-20)
        UNRESOLVED_REFERENCE      text ranges: [(45,55)]
          PSI: KtNameReferenceExpression at (3,10-20)
      for PSI element of type KtNameReferenceExpression at (4,10-20)
        UNRESOLVED_REFERENCE      text ranges: [(65,75)]
          PSI: KtNameReferenceExpression at (4,10-20)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/declarationErrors.txt

        ABSTRACT_CLASS_MEMBER_NOT_IMPLEMENTED      text ranges: [(62,69)]
          PSI: KtClass at (6,1-11)
      for PSI element of type KtNamedFunction at (4,3-21)
        ABSTRACT_FUNCTION_IN_NON_ABSTRACT_CLASS      text ranges: [(41,49)]
          PSI: KtNamedFunction at (4,3-21)
      for PSI element of type KtTypeReference at (6,10-11)
        FINAL_SUPERTYPE      text ranges: [(71,72)]
          PSI: KtTypeReference at (6,10-11)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 788 bytes
    - Viewed (0)
Back to top