Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for north (0.03 sec)

  1. platforms/ide/tooling-api/buildship.gradle

        projectVersion = project.version
        projectDirectory = layout.buildDirectory.dir("buildshipProject").get().asFile
    }
    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class CreateBuildshipEclipseProjectTask extends DefaultTask {
    
        @InputFile
        abstract RegularFileProperty getToolingApiShadedJar()
    
        @Input
        abstract Property<String> getProjectVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    Gradle's _incremental build_ feature helps to avoid work that is already done, but once you re-execute a task, any previous results are forgotten.
    When you are switching branches back and forth, the local results get rebuilt over and over again, even if you are building something that has already been built before.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. 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)
  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