Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,203 for aranges (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CharSequenceExtensions.kt

    internal
    fun CharSequence.linePreservingSubstring(range: IntRange): String =
        linePreservingSubstring_(range).second
    
    
    internal
    fun CharSequence.linePreservingSubstring_(range: IntRange): Pair<Int, String> {
        val lineCount = take(range.start).count { it == '\n' }
        return lineCount to "\n".repeat(lineCount) + substring(range)
    }
    
    
    internal
    fun CharSequence.linePreservingBlankRanges(ranges: List<IntRange>): String =
        ranges
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    This includes adding the description of the changes to the `accepted-public-api-changes.json` file, and providing a reason for each change.
    You can add the changes to any place in the file, e.g. at the top.
    
    3. Make sure the file with accepted changes is sorted.\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. pkg/config/mesh/networks_watcher.go

    type WatcherHandlerRegistration struct {
    	handler func()
    }
    
    // NetworksWatcher watches changes to the mesh networks config.
    type NetworksWatcher interface {
    	NetworksHolder
    
    	// AddNetworksHandler registers a callback handler for changes to the networks config.
    	AddNetworksHandler(func()) *WatcherHandlerRegistration
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/codeFragmentDiagnostics/evalJvm.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (1,1-5)
        UNRESOLVED_REFERENCE      text ranges: [(0,4)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 189 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/codeFragmentDiagnostics/evalJvmJs.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (1,1-5)
        UNRESOLVED_REFERENCE      text ranges: [(0,4)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 189 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevelWithFileSuppression.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (1,16-39)
        ERROR_SUPPRESSION      text ranges: [(15,38)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 194 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/scriptUninitializedTopLevelProperty2.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (1,11-32)
        ERROR_SUPPRESSION      text ranges: [(10,31)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 194 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCallWithLocalFunction.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (6,17-27)
        UNRESOLVED_REFERENCE      text ranges: [(147,157)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 197 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteFor.txt

    Diagnostics from elements:
      for PSI element of type KtForExpression at (2,5) - (3,1)
        ITERATOR_MISSING      text ranges: [(20,30)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 22 17:15:24 UTC 2023
    - 179 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/when/sealedClassFromLibraryMissingCase.txt

    Diagnostics from elements:
      for PSI element of type KtWhenExpression at (14,12) - (16,6)
        NO_ELSE_IN_WHEN      text ranges: [(102,106)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 10 10:13:23 UTC 2024
    - 188 bytes
    - Viewed (0)
Back to top