Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 205 for light (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                if (includedBuildPrefix != null) {
                    Path includedBuildPath = includedBuildPrefix.left;
                    BuildState includedBuild = includedBuildPrefix.right;
                    Path projectPath = path.removeFirstSegments(includedBuildPath.segmentCount());
                    return findProjectOf(includedBuild, projectPath);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

        }
    
        private getTomlPath(String name) {
            def tomlResource = getClass().getResource("/org/gradle/api/internal/catalog/parser/${name}.toml").toURI()
            // Paths might be unusual, but we need it because of 1.8
            Paths.get(tomlResource)
        }
    
        @CompileStatic
        private static class DependencySpec {
            private final DependencyModel model
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.index.asMap().size() == 2
            list.index.pendingAsMap.size() == 2
    
            filtered.index.asMap().size() == 1
            filtered.index.pendingAsMap.size() == 1
    
            expect: "list contains the right elements when iterated"
            filtered.asList() == ["realized2", "unrealized2"]
    
            and: "unrealized element get realized"
            container.index.asMap().size() == 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      // the appropriate environment for a child process to execute the death
      // test, then wait for it to complete.
      enum TestRole { OVERSEE_TEST, EXECUTE_TEST };
    
      // An enumeration of the three reasons that a test might be aborted.
      enum AbortReason {
        TEST_ENCOUNTERED_RETURN_STATEMENT,
        TEST_THREW_EXCEPTION,
        TEST_DID_NOT_DIE
      };
    
      // Assumes one of the above roles.
      virtual TestRole AssumeRole() = 0;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            repo.getModuleMetaData("group", "projectA").expectGet()
            projectA.pom.expectGetMissing()
    
            and:
            fails 'retrieve'
    
            then:
            // TODO - this error message isn't right: it found a version, it just happened to be missing. should really choose another version
            failure.assertHasCause("""Could not find any matches for group:projectA:1.+ as no versions of group:projectA are available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                                selectedByRule()
                            }
                        }
                        module('org:b:1.0') {
                            // this is not quite right, as we should replace with 2 edges
                            // one option to do it is to construct "adhoc" modules, and select an adhoc target in "prefer"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

         * @param right The set on the “right” side of the comparison.
         * @param compareBy Provides the value to compare entries from either side by
         * @param <T> The type of the entry objects
         * @return A representation of the difference
         */
        public static <T> SetDiff<T> diffSetsBy(Set<? extends T> left, Set<? extends T> right, Transformer<?, T> compareBy) {
            logDeprecation(7);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

     * <p>
     * Enables configuring the build run / model request with options like the Java home or JVM arguments.
     * Those settings might not be supported by the target Gradle version. Refer to Javadoc for those methods
     * to understand what kind of exception throw and when is it thrown.
     *
     * @since 1.0-milestone-7
     */
    public interface LongRunningOperation {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

        @Unroll("#left ∪ #right = #expected")
        def "union of two elements"() {
            expect:
            factory.anyOf(left, right) == expected
    
            and: "union is commutative"
            factory.anyOf(right, left) == expected
    
            where:
            left                                                                | right                                       | expected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    ====
    
    NOTE: Disabling transitive dependency resolution will likely require you to declare the necessary runtime dependencies in your build script which otherwise would have been resolved automatically. Not doing so might lead to runtime classpath issues.
    
    A project can decide to disable transitive dependency resolution completely.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top