Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for Sall (0.03 sec)

  1. .github/CODEOWNERS

    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    # unassigned. This means that the ownership may be unknown, lost or
    # mixed across several groups.
    * @gradle/bt-unassigned-maintainers
    
    # Build infrastructure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import java.util.Locale;
    import java.util.function.Function;
    
    /**
     * A {@link DiagnosticListener} that consumes {@link Diagnostic} messages, and reports them as Gradle {@link Problems}.
     */
    // If this annotation is not present, all diagnostic messages would be wrapped in a ClientCodeWrapper.
    // We don't need this wrapping feature, hence the trusted annotation.
    @ClientCodeWrapper.Trusted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                return input.isPrimitive();
            }
        };
    
        static <T> DescribedPredicate<Collection<T>> thatAll(DescribedPredicate<T> predicate) {
            return new DescribedPredicate<Collection<T>>("that all %s", predicate.getDescription()) {
                @Override
                public boolean test(Collection<T> input) {
                    return input.stream().allMatch(predicate);
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "gradle.taskGraph.addTaskExecutionGraphListener(new MyListener())"    | 4
        }
    
        def "checking cross-project model access in task graph call `#statement` with #tasksToRun, should succeed: #shouldSucceed"() {
            createDirs("b")
            settingsFile << """
                include("b")
            """
            file("build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            this.initScripts = initScripts;
        }
    
        /**
         * Returns all explicitly added init scripts that will be run before the build starts.  This list does not contain the user init script located in ${user.home}/.gradle/init.gradle, even though
         * that init script will also be run.
         *
         * @return list of all explicitly added init scripts.
         */
        public List<File> getInitScripts() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                def args = executer.allArgs.tap { remove("--no-daemon") }
    
                def actionExecuter = connection.action(buildAction)
                config.delegate = actionExecuter
                config.call()
    
                model = actionExecuter
                    .withArguments(args)
                    .setStandardOutput(new TeeOutputStream(output, System.out))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

        }
    
        /**
         * Clears the current selection for the module, to prepare for conflict resolution.
         * - For the current selection, disconnect and remove any outgoing dependencies.
         * - Make all 'selected' component versions selectable.
         */
        public void clearSelection() {
            if (selected != null) {
                selected.removeOutgoingEdges();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            }
        }
    
        private static class PackageStatementDetector extends CompilationUnit.SourceUnitOperation {
            private boolean hasPackageStatement;
    
            @Override
            public void call(SourceUnit source) throws CompilationFailedException {
                hasPackageStatement = source.getAST().getPackageName() != null;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            then:
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': system property 'CI'")
            }
    
            where:
            mechanism << SystemPropertyInjection.all("CI", "false")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13569")
        def "reports build logic reading system properties using GString parameters - #expression"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  10. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/suppressions.xml

        <suppress checks="ConstantName"
                  files=".*[/\\]internal-architecture-testing[/\\]src[/\\]main[/\\]java[/\\]org[/\\]gradle[/\\].+" />
    
        <!-- Ignore all checks for the generated sources of org.gradle.samples plugin -->
        <suppress checks=".*" files=".*[/\\]docs[/\\]build[/\\]generated-source-sets[/\\].+" />
        <suppress checks=".*" files=".*[/\\].*[/\\]groovy-dsl-plugins[/\\].+" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top