Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 322 for realizes (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

                file("build/libs1/test-1.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
                file("build/libs1/test2-2.3.jar.txt").readLines() == ["1", "2", "3", "4", "5"]
            } else {
                // Counter is isolated at execution time, so transforms will see the increment in each tasks' doLast { }
                file("build/libs2/test-1.3.jar.txt").readLines() == ["2", "3", "4", "5", "6"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Resources.java

       */
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public static <T extends @Nullable Object> T readLines(
          URL url, Charset charset, LineProcessor<T> callback) throws IOException {
        return asCharSource(url, charset).readLines(callback);
      }
    
      /**
       * Reads all of the lines from a URL. The lines do not include line-termination characters, but do
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

        @Requires(UnitTestPreconditions.IsGroovy3)
        def "produces sensible error when bad code is supplied in component selection rule with Groovy 3"() {
            def lines = buildFile.readLines().size()
            buildFile << """
                dependencies {
                    conf "org.utils:api:1.2"
                }
    
                configurations.all {
                    resolutionStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistry.java

         * @param type the type to project the node as
         * @param <T> the type to project the node as
         * @return the node as the given type
         */
        <T> T realize(ModelPath path, ModelType<T> type);
        <T> T realize(String path, ModelType<T> type);
        <T> T realize(String path, Class<T> type);
    
        /**
         * Get the fully defined model element at the given path.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromWithTypeGetByNameDomainObjectContainerIntegrationTest.groovy

        def "can execute query and mutation methods #method.key from withType.getByName"() {
            buildFile << """
                testContainer.withType(testContainer.type).getByName("realized") {
                    ${method.value}
                }
            """
    
            expect:
            succeeds "help"
    
            where:
            method << getQueryMethods() + getMutationMethods()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

        }
    
        public static Object realize(ModelRegistry modelRegistry, String path) {
            return modelRegistry.realize(ModelPath.nonNullValidatedPath(path), ModelType.UNTYPED);
        }
    
        public static <T> T realize(ModelRegistry modelRegistry, String path, Class<T> type) {
            return modelRegistry.realize(ModelPath.nonNullValidatedPath(path), ModelType.of(type));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/collections/EventSubscriptionVerifier.java

    package org.gradle.api.internal.collections;
    
    import javax.annotation.Nullable;
    
    /**
     * Tracks which types are subscribed to by eager event listeners. Lazy elements of a
     * subscribed type should be immediately realized when added to a container.
     */
    public interface EventSubscriptionVerifier<T> {
    
        /**
         * Determines whether events should be emitted for elements of the given type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:16:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromAllDomainObjectContainerIntegrationTest.groovy

        def "can execute query and mutating methods #method.key from all"() {
            buildFile << """
                testContainer.all {
                    if (it.name == "realized") {
                        ${method.value}
                    }
                }
            """
    
            expect:
            succeeds "help"
    
            where:
            method << getQueryMethods() + getMutationMethods()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/QueryAndMutateFromGetByNameDomainObjectContainerIntegrationTest.groovy

        def "can execute query and mutation methods #method.key from getByName"() {
            buildFile << """
                testContainer.getByName("realized") {
                    ${method.value}
                }
            """
    
            expect:
            succeeds "help"
    
            where:
            method << getQueryMethods() + getMutationMethods()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 05 09:53:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. .github/workflows/CheckBadMerge.groovy

            try {
                List<String> mergeCommitFileLines = showFileOnCommit(mergeCommit, filePath).readLines()
                List<String> masterCommitFileLines = showFileOnCommit(masterCommit, filePath).readLines()
                List<String> releaseCommitFileLines = showFileOnCommit(releaseCommit, filePath).readLines()
                for (String line in mergeCommitFileLines) {
                    if (line.trim().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 10:35:44 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top