Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for manny (0.25 sec)

  1. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 299
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.DeprecationCreationPerformanceTest.create many deprecation warnings",
      "durations" : [ {
        "testProject" : "generateLotsOfDeprecationWarnings",
        "linux" : 140
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                throw new IOException(String.format("Too few entries found in %s", current));
            }
            if (current.entries.size() > maxChildIndexEntries) {
                throw new IOException(String.format("Too many entries found in %s", current));
            }
    
            boolean isLeaf = current.entries.size() == 0 || current.entries.get(0).childIndexBlock.isNull();
            if (isLeaf ^ current.tailPos.isNull()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                }
                if (node is LocalTaskNode) {
                    scheduledNodeIds[node.prepareNode] = scheduledNodeIds.size
                }
            }
            // A large build may have many nodes but not so many entry nodes.
            // To save some disk space, we're only saving entry node ids rather than writing "entry/non-entry" boolean for every node.
            writeCollection(scheduledEntryNodeIds) {
                writeSmallInt(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectingInstantiatorTest.groovy

            e.cause == HasBrokenConstructor.failure
        }
    
        def "fails when too many constructor parameters provided"() {
            when:
            instantiator.newInstance(HasOneInjectConstructor, 12, "param2")
    
            then:
            ObjectInstantiationException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 04:41:06 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.corefeature.DeprecationCreationPerformanceTest.create many deprecation warnings",
        "groups" : [ {
          "testProject" : "generateLotsOfDeprecationWarnings",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     *    package my.project
     *
     *    // ... plugin implementation ...
     *    ```
     * ## Applying plugins
     * Precompiled script plugins can apply plugins much in the same way as regular scripts can, using one
     * of the many `apply` method overloads or, in the case of [Project] scripts, via the `plugins` block.
     *
     * And just as regular [Project] scripts can take advantage of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                zip(destFile, it)
            }
    
            // Zip all files in project build directory into a single zip file to avoid publishing too many tiny files
            reports.filter { it.isFile && it.toPath().startsWith(projectBuildDirPath) }
                .map { projectBuildDirPath.relativize(it.toPath()).toString() to it }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            build2.waitForFinish()
            build3.waitForFinish()
        }
    
        // This test simulates a long running Zinc compiler setup by running code similar to ZincScalaCompilerFactory through the worker API.
        // if many workers wait for the same exclusive lock, a worker does not time out because several others get the lock before
        def "worker not timeout"() {
            given:
            def gradleUserHome = file("home").absoluteFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            SnapshotHierarchy result = root;
            int toRemove = hierarchies.size() - maximumNumberOfWatchedHierarchies;
            if (toRemove > 0) {
                LOGGER.info(
                    "Watching too many directories in the file system (watching {}, limit {}), dropping some state from the virtual file system",
                    hierarchies.size(),
                    maximumNumberOfWatchedHierarchies
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

            when:
            withWatchFs().run "assemble", "--info"
            then:
            executedAndNotSkipped(":includedBuild:jar")
            assertWatchedHierarchies([includedBuild])
            postBuildOutputContains("Watching too many directories in the file system (watching 2, limit 1), dropping some state from the virtual file system")
        }
    
        def "does not show unsupported watching hierarchies warning for test directory"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top