Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,609 for Lach (0.1 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

                classDoc.classMethods.each { methodDoc ->
                    linkMetaData.addMethod(methodDoc.metaData, LinkMetaData.Style.Dsldoc)
                }
                classDoc.classBlocks.each { blockDoc ->
                    linkMetaData.addBlockMethod(blockDoc.blockMethod.metaData)
                }
                classDoc.classProperties.each { propertyDoc ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/html5.js

    ")),!c&&e.attr("list")){var l=[],m=a("#"+e.attr("list"));if(m.find("option").each(function(){l.push(a(this).text())}),0===l.length){var n=a.trim(a("#"+e.attr("list")).text()).split("\n");a.each(n,function(b,c){l.push(a.trim(c))})}m.remove(),a.formUtils.suggest(e,l)}if(b.length){f||(h["data-validation-optional"]="true"),g=!0;var o=(e.attr("data-validation")||"")+" "+b.join(" ");e.attr("data-validation",a.trim(o)),a.each(h,function(a,b){e.attr(a,b)})}}),g&&e.trigger("html5ValidationAttrsFound"),b|...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

    
            testApp.getSourceFiles().each { SourceFile sourceFile ->
                file("src/main/all/${sourceFile.name}") << sourceFile.content
            }
    
            testApp.headerFiles.each { SourceFile sourceFile ->
                file("src/main/headers/${sourceFile.name}") << sourceFile.content
            }
    
            buildFile.text = ""
            testApp.plugins.each { plugin ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K 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