Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,526 for oranges (1.77 sec)

  1. src/unicode/letter_test.go

    	}
    	return r16
    }
    
    func linear(ranges []Range16, r uint16) bool {
    	for i := range ranges {
    		range_ := &ranges[i]
    		if r < range_.Lo {
    			return false
    		}
    		if r <= range_.Hi {
    			return (r-range_.Lo)%range_.Stride == 0
    		}
    	}
    	return false
    }
    
    func binary(ranges []Range16, r uint16) bool {
    	// binary search over ranges
    	lo := 0
    	hi := len(ranges)
    	for lo < hi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. testing/architecture-test/build.gradle.kts

    }
    
    val acceptedApiChangesDirectory = layout.projectDirectory.dir("src/changes/accepted-changes")
    
    val verifyAcceptedApiChangesOrdering = tasks.register<gradlebuild.binarycompatibility.AlphabeticalAcceptedApiChangesTask>("verifyAcceptedApiChangesOrdering") {
        group = "verification"
        description = "Ensures the accepted api changes file is kept alphabetically ordered to make merging changes to it easier"
        apiChangesDirectory = acceptedApiChangesDirectory
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

         * to quickly open the changes file.  By then we can also regex that path out of the description
         * in order to create a changes {@link File} for further use in this class.
         *
         * @param data the report data containing a description to parse
         * @return accepted api changes reported upon, as a file
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 07 20:38:43 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveIncrementalCachingStateStepTest.groovy

     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableList
    import org.gradle.internal.execution.history.PreviousExecutionState
    import org.gradle.internal.execution.history.changes.ExecutionStateChanges
    import org.gradle.internal.hash.TestHashCodes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ChangeContainer.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    public interface ChangeContainer {
        /**
         * Propagate changes to the visitor.
         *
         * @return Whether the visitor still wants to obtain more changes.
         */
        boolean accept(ChangeVisitor visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 888 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedSuperConstructorCall.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (3,12-13)
        UNRESOLVED_REFERENCE      text ranges: [(25,26)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Sep 08 07:25:36 UTC 2023
    - 195 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClass.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (11,25-61)
        UNUSED_PARAMETER      text ranges: [(64,73)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClassFromAnotherModule.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (13,25-61)
        UNUSED_PARAMETER      text ranges: [(86,95)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/when/sealedInterfaceFromLibraryMissingCase.txt

    Diagnostics from elements:
      for PSI element of type KtWhenExpression at (14,12) - (16,6)
        NO_ELSE_IN_WHEN      text ranges: [(106,110)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 10 10:13:23 UTC 2024
    - 188 bytes
    - Viewed (0)
  10. src/cmd/trace/regions.go

    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    <h3 id="ranges">Special ranges</h3>
    
    The table below describes how much of the traced period each goroutine spent in
    certain special time ranges.
    If a goroutine has spent no time in any special time ranges, it is excluded from
    the table.
    For example, how much time it spent helping the GC. Note that these times do
    overlap with the times from the first table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top