Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,609 for Lach (0.04 sec)

  1. 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)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /**< Sets the message handler to call before each suite is run. */
    CU_EXPORT void CU_set_test_start_handler(CU_TestStartMessageHandler pTestStartMessage);
    /**< Sets the message handler to call before each test is run. */
    CU_EXPORT void CU_set_test_complete_handler(CU_TestCompleteMessageHandler pTestCompleteMessage);
    /**< Sets the message handler to call after each test is run. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

            def variantVersion = context.details.id.version
            def version = variantVersion.substring(0, variantVersion.indexOf("-"))
            ["compile", "runtime"].each { base ->
                [6: "android", 8: "jre"].each { targetJvmVersion, jarName ->
                    context.details.addVariant("jdk$targetJvmVersion${base.capitalize()}", base) {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            given:
            def inputFiles = (1..changesCount).collect { inputDir.file("input${it}.txt") }
            inputFiles.each { it.createFile() }
            boolean expectMoreChanges = (changesCount > changesLimit)
    
            when:
            succeeds("theTask")
            inputFiles.each { it.delete() }
    
            then:
            buildTriggeredAndSucceeded()
            sendEOT()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/plugins/BinaryBasePlugin.java

     * - Adds a {@link BinarySpec} container named {@code binaries} to the project.
     * - Registers the base {@link BinarySpec} type.
     * - For each {@link BinarySpec}, registers a lifecycle task to assemble that binary.
     * - For each {@link BinarySpec}, adds the binary's source sets as its default inputs.
     * - Links the tasks for each {@link BinarySpec} across to the tasks container.
     */
    @Incubating
    public abstract class BinaryBasePlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * @return this
         */
        ContentFilterable filter(Transformer<@org.jetbrains.annotations.Nullable String, String> transformer);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
         * Groovy's {@link groovy.text.SimpleTemplateEngine}. This means you can use simple property references, such as
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top