Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 346 for north (0.04 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-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_buildvcs.txt

    # https://go.dev/issue/51723: 'go test' should not stamp VCS metadata
    # in the build settings. (It isn't worth the latency hit, given that
    # test binaries are almost never distributed to users.)
    
    [short] skip
    [!git] skip
    
    exec git init
    
    # The test binaries should not have VCS settings stamped by default.
    # (The test itself verifies that.)
    go test . ./testonly
    
    # However, setting -buildvcs explicitly should override that and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
Back to top