Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 549 for Sall (0.19 sec)

  1. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultTimer.java

            // System.nanoTime() can go backwards under some circumstances.
            // http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6458294
            // This max() call ensures that we don't return negative durations.
            return Math.max(elapsedMillis, 0);
        }
    
        @Override
        public void reset() {
            startTime = timeSource.nanoTime();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/build.gradle.kts

    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    val prepareVersionsInfo = tasks.register<PrepareVersionsInfo>("prepareVersionsInfo") {
        destFile = layout.buildDirectory.file("generated-resources/all-released-versions/all-released-versions.properties")
        versions = moduleIdentity.releasedVersions.map {
            it.allPreviousVersions.joinToString(" ") { it.version }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/stored.rules

    no\ classes\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String,\ Action)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(String)\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockContentionHandler.java

         * - The owner was already pinged about the given lock before and the lock release is in progress
         * - The ping through the underlying socket failed
         *
         * @return true if the owner was pinged in this call
         */
        boolean maybePingOwner(int port, long lockId, String displayName, long timeElapsed, @Nullable FileLockReleasedSignal signal);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 01:28:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

        }
    
        protected applyPluginUnqualified(File target = buildFile) {
            target << "apply plugin: '${getPluginName()}'\n"
        }
    
        def "does not realize all possible tasks"() {
            // TODO: This isn't done yet, we still realize many tasks
            // Eventually, this should only realize "help"
    
            Assume.assumeFalse(pluginName in [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            inDirectory("impl")
            run("build")
    
            then:
            fixture.assertProjectsConfigured(':', ':impl', ':api')
        }
    
        def "name matching execution from root evaluates all projects"() {
            createDirs("api", "impl")
            settingsFile << "include 'api', 'impl'"
            buildFile << "task foo"
    
            when:
            run("foo")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    Tasks runnable from project ':app'
    ------------------------------------------------------------
    
    ...
    
    Publishing tasks
    ----------------
    publish - Publishes all publications produced by this project.
    publishToMavenLocal - Publishes all Maven publications produced by this project to the local Maven cache.
    ----
    
    A new set of publishing tasks are now available called `publish`, and `publishToMavenLocal`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/build.gradle.kts

        testImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        integTestImplementation(projects.messaging)
        // TODO: Make these available for all integration tests? Maybe all tests?
        integTestImplementation(libs.jetbrainsAnnotations)
    
        testFixturesApi(testFixtures(project(":language-jvm")))
        testFixturesImplementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    Init Plugin :: An init plugin is a plugin that is applied in the `init.gradle` or `init.gradle.kts` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryServicesTest.groovy

        }
    
        @Rule ConcurrentTestUtil concurrent = new ConcurrentTestUtil()
    
        def "the registry can be concurrently written to"() {
            when:
            // obtain localhost address ahead of time as the first call in a JVM can take multiple secs in some systems
            def localhost = Inet6Address.getLocalHost()
            def registry = registry("someDir").get(DaemonRegistry)
            5.times { idx ->
                concurrent.start {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top