Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,341 for withZip (0.12 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/NonDeclarativePluginUseIntegrationSpec.groovy

            when:
            buildScript """
                $USE
    
                def ops = []
    
                plugins.withId('$PLUGIN_ID') {
                  ops << "withId 1"
                }
    
                plugins.withId("test-plugin-2") {
                  ops << "withId 2"
                }
    
                def class1 = ${pluginBuilder.packageName}.TestPlugin
                def class2 = ${pluginBuilder2.packageName}.TestPlugin2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.h

      /// Return a new scope. All ops created within the returned scope will have no
      /// control dependencies on other operations.
      Scope WithNoControlDependencies() const;
    
      /// Return a new scope. All ops created within the returned scope will have
      /// the device field set to 'device'.
      Scope WithDevice(const string& device) const;
    
      /// Returns a new scope.  All ops created within the returned scope will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

            then:
            thrown UnknownPluginException
    
            when:
            container.withId("plugin2") { plugins << it }
    
            then:
            plugins.empty
    
            when:
            container.apply(pluginClass)
    
            then:
            plugins[0].class == pluginClass
        }
    
        def "no error when withId used and plugin with no id"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/TaskPathLocation.java

    /**
     * Represents a task path.
     *
     * @since 8.6
     */
    @Incubating
    public interface TaskPathLocation extends Location {
    
        /**
         * Returns the path of this task within the build tree. This is a unique name for this task within the composite build.
         *
         * @since 8.6
         */
        String getBuildTreePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 1013 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ExclusiveVariantsIntegrationTest.groovy

                }
                """.stripIndent()
    
            expect:
            fails("resolveSample")
            failure.assertHasDocumentedCause("Consumable configurations with identical capabilities within a project (other than the default configuration) must have unique attributes, but configuration ':sample1' and [configuration ':sample2'] contain identical attribute sets. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:34:52 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildCache/caching-android-projects/groovy/build.gradle

    plugins {
        id("org.jetbrains.kotlin.jvm") version "1.9.23"
        id("org.jetbrains.kotlin.kapt") version "1.9.23"
    }
    
    // tag::cacheKapt[]
    plugins.withId("kotlin-kapt") {
        kapt.useBuildCache = true
    }
    // end::cacheKapt[]
    
    // tag::fabricGroovy[]
    plugins.withId("com.android.application") { // or "com.android.library"
        android.buildTypes.debug.ext.enableCrashlytics = false
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 402 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4_Component.puml

    !include C4_Container.puml
    
    ' Scope: A single container.
    ' Primary elements: Components within the container in scope.
    ' Supporting elements: Containers (within the software system in scope) plus people and software systems directly connected to the components.
    ' Intended audience: Software architects and developers.
    
    ' Colors
    ' ##################################
    
    !define COMPONENT_BG_COLOR #85BBF0
    
    ' Styling
    ' ##################################
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

        void assertRegistryNotWorldReadable();
    
        /**
         * Asserts that this daemon becomes idle within a short timeout. Blocks until this has happened.
         */
        DaemonFixture becomesIdle();
    
        /**
         * Asserts that this daemon stops and is no longer visible to any clients within a short timeout. Blocks until this has happened.
         */
        DaemonFixture stops();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. licenses/github.com/go-logr/stdr/LICENSE

              within such NOTICE file, excluding those notices that do not
              pertain to any part of the Derivative Works, in at least one
              of the following places: within a NOTICE text file distributed
              as part of the Derivative Works; within the Source form or
              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            hasPlugin('with.ref') {
                withId 'org.example'
                withVersionRef 'ref'
                withVersion {
                    require '1.6'
                }
            }
            hasPlugin('with-rich1') {
                withId 'org.example'
                withVersion {
                    prefer '1.0'
                }
            }
            hasPlugin('with-rich2') {
                withId 'org.example'
                withVersion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top