Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,585 for Lach (0.22 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param action The action to execute for each element becomes known.
         */
        <S> void whenElementKnown(Class<S> type, Action<? super S> action);
    
        /**
         * Registers an action to execute when an element is finalized. The action is only executed for those elements that are required. Fails if any element has already been finalized.
         *
         * @param action The action to execute for each element when finalized.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            (0..10).each { count ->
                assert events.statusMatches("${count} tests? completed(,.*)*")
            }
    
            and:
            (1..3).each { count ->
                assert events.statusMatches("\\d+ tests? completed, ${count} failed(,.*)?")
            }
    
            and:
            (1..2).each { count ->
                assert events.statusMatches("\\d+ tests? completed,( \\d failed,)? ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

                });
            } else {
                row.find("td,th").each(function(index){
                    $(this).addClass(slices[index]);
                })
            }
        });
    
        // Add alternate row styles for tables
        $("table").each(function () {
            var counter = 0;
            var rows = $(this).find("tr");
            if (rows.length != 1) {
                rows.each(function () {
                    var e = $(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/ztunnel.libsonnet

        + row.withPanels([
          panels.timeSeries.base('Ztunnel Versions', queries.istioBuild, 'Version number of each running instance'),
          panels.timeSeries.bytes('Memory Usage', queries.memUsage, 'Memory usage of each running instance'),
          panels.timeSeries.base('CPU Usage', queries.cpuUsage, 'CPU usage of each running instance'),
        ]),
        row.new('Network')
        + row.withPanels([
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents/build.gradle

            }
        }
        components {
            all {
                targetPlatform "x86"
            }
        }
        components {
    <%
    components.each { component ->
        out.println """
            ${component.name}(${component.type}) {
                binaries.all {"""
        component.deps.each { dep ->
            out.println """
                    lib project: '${dep.project}', library: '${dep.library}', linkage: '${dep.linkage}'"""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFile.groovy

        void setProjects(List<VisualStudioProjectMetadata> projects) {
            projects.each { VisualStudioProjectMetadata project ->
                this.projects[project.file] = project.name
                if (!this.projectConfigurations.containsKey(project.file)) {
                    this.projectConfigurations[project.file] = new HashSet<>()
                }
                project.configurations.each { configuration ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolutionResult.java

        /**
         * Applies given action for each dependency.
         * An instance of {@link DependencyResult} is passed as parameter to the action.
         *
         * @param action - action that is applied for each dependency
         */
        void allDependencies(Action<? super DependencyResult> action);
    
        /**
         * Applies given closure for each dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 24 19:03:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         * @return this
         */
        ManifestMergeSpec from(Object... mergePaths);
    
        /**
         * Adds an action to be applied to each key-value tuple in a merge operation. If multiple merge paths are specified,
         * the action is called for each key-value tuple of each merge operation. The given action is called with a
         * {@link org.gradle.api.java.archives.ManifestMergeDetails} as its parameter. Actions are executed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/build.gradle

    apply plugin: 'java'
    apply plugin: 'eclipse'
    apply plugin: 'idea'
    
    
    <% if (binding.hasVariable("manyPlugins")) { (1..25).findAll { it % 3 == 0 }.each { %>
        apply plugin: "org.gradle.build.gen${it}"
        <% } %>
        <% } %>
    
    
    <% if (binding.hasVariable("manyScripts")) { (1..30).findAll { it % 5 == 0 }.each { %>
        apply from: "\${rootProject.projectDir.absolutePath}/gradle/script-plugin${it}.gradle"
        <% } %>
        <% } %>
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/RuleApplicationScope.java

                boolean annotatedWithEach = hasAnnotation(annotations, Each.class);
                if (paramIndex == subjectParamIndex) {
                    if (annotatedWithEach && hasAnnotation(annotations, Path.class)) {
                        problems.add(ruleDefinition, "Rule subject must not be annotated with both @Path and @Each.");
                    }
                    result = annotatedWithEach ? DESCENDANTS : SELF;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top