Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 276 for north (0.15 sec)

  1. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

    import org.gradle.work.DisableCachingByDefault
    import javax.inject.Inject
    
    
    const val flakinessDetectionCommitBaseline = "flakiness-detection-commit"
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class DetermineBaselines @Inject constructor(@get:Internal val distributed: Boolean) : DefaultTask() {
    
        @get:Internal
        abstract val configuredBaselines: Property<String>
    
        @get:Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSortedAsList.java

      @Override
      public int indexOf(@CheckForNull Object target) {
        int index = delegateCollection().indexOf(target);
    
        // TODO(kevinb): reconsider if it's really worth making feeble attempts at
        // sanity for inconsistent comparators.
    
        // The equals() check is needed when the comparator isn't compatible with
        // equals().
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/RemoteProject.groovy

    import org.gradle.work.DisableCachingByDefault
    
    import javax.inject.Inject
    
    /**
     * Checkout a project template from a git repository.
     */
    @CompileStatic
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class RemoteProject extends DefaultTask {
    
        private final FileSystemOperations fsOps
        private final ExecOperations execOps
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

            def watchableHierarchies = ["first", "second", "third"].collect { file(it).createDir() }
            def fileInWatchableHierarchies = file("first/inside/root/dir/file.txt")
            def fileOutsideOfWatchableHierarchies = file("forth").file("someFile.txt")
    
            when:
            registerWatchableHierarchies(watchableHierarchies)
            then:
            0 * _
    
            when:
            fileInWatchableHierarchies.createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

         * [computePackageNamesWithTopLevelCallables] if either returns `null`. It depends on the declaration provider whether it's worth
         * computing separate package sets for classifiers and callables, or just one set containing all package names.
         */
        public open fun computePackageNames(): Set<String>? = null
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/import-boss/README.md

    Evaluation starts with the rules file closest to the package.  If that file
    makes a determination to allow or forbid the import, evaluation is done.  If
    the import does not match any rule, the next-closest rules file is consulted,
    and so forth.  If the rules files are exhausted and no determination has been
    made, the import will be flagged as an error.
    
    ### What are rules files?
    
    A rules file is a JSON or YAML document with two top-level keys, both optional:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/tasks/GenerateKotlinDependencyExtensions.kt

    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.licenseHeader
    import org.gradle.work.DisableCachingByDefault
    
    import java.io.File
    
    
    @Suppress("unused")
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class GenerateKotlinDependencyExtensions : CodeGenerationTask() {
    
        @get:Input
        abstract val embeddedKotlinVersion: Property<String>
    
        @get:Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/MergeInstrumentationAnalysisTransform.java

     * [class name 1]=[instrumented super type 1],[instrumented super type 2],...<br>
     * [class name 2]=[instrumented super type 1],[instrumented super type 2],...<br>
     * ...
     */
    @DisableCachingByDefault(because = "Not worth caching.")
    public abstract class MergeInstrumentationAnalysisTransform implements TransformAction<MergeInstrumentationAnalysisTransform.Parameters> {
    
        public interface Parameters extends TransformParameters {
            @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_annotate_dynamic_shape_inputs.cc

        if (&block.front() == &block.back()) {
          // The tf_device.launch is empty (except for the return).
          // Remove the whole tf_device.launch, since later passes will make it send
          // the arguments back and forth between the devices.
          Operation* return_op = &block.back();
          assert(llvm::isa<tf_device::ReturnOp>(return_op));
          for (auto [inner, outer] :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

    import org.gradle.internal.util.PropertiesUtils
    import org.gradle.util.internal.VersionNumber
    import org.gradle.work.DisableCachingByDefault
    import java.util.Properties
    
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class UpdateInitPluginTemplateVersionFile : DefaultTask() {
    
        private
        val devSuffixes = arrayOf(
            "-SNAP\\d+",
            "-SNAPSHOT",
            "-alpha.*\\d+",
            "-beta.*\\d+",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 11:19:07 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top