Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,641 for Lach (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. manifests/charts/README.md

    The install is organized in 'environments' - each environment consists of a set of components
    in different namespaces that are configured to work together. Regardless of 'environment',
    workloads can talk with each other and obey the Istio configuration resources, but each environment
    can use different Istio versions and different configuration defaults.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/SettingsBuilder.groovy

                settingsFile << """
                    rootProject.name = '$rootProjectName'
                """
                includes.each { pName ->
                    settingsFile << """
                    include '$pName'
                """
                }
                includeBuilds.each { pName ->
                    settingsFile << """
                    includeBuild '$pName'
                """
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/InspectableConfigurationFixture.groovy

                configuration.getDependencies().each { Dependency d ->
                    reply.append("\n   ").append(d)
                }
            } else {
                reply.append("\n   none")
            }
    
            reply.append("\nLocal Artifacts:")
            if (configuration.getArtifacts().size() > 0) {
                configuration.getArtifacts().each { PublishArtifact a ->
                    reply.append("\n   ").append(a)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. architecture/runtimes.md

        
    ```
    
    These are all Java processes. Each process has a corresponding "runtime".
    All source code in Gradle is written to target one or more of these runtimes.
    Most source code targets the daemon and the remaining code either targets a single runtime, for example the Gradle client, or is shared across multiple runtimes.
    
    ## Composition by architecture modules
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/module.h

    // fully-built model.
    //
    // Implementation steps:
    //
    //   1) For each function def in the SavedModel, register it with the runtime.
    //   2) For each object in the object graph def, build it.
    //   3) For each variable stored in the checkpoint in the SavedModel,
    //      restore it, and attach it to the associated variable object.
    //   4) For each polymorphic function, associate it with the appropriate
    //      concrete function(s).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top