Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for Consumes (0.2 sec)

  1. src/cmd/go/internal/test/test.go

    			// asking cmd/cover for a static meta-data file as part of
    			// the package build. This static meta-data file is then
    			// consumed by a pseudo-action (writeCoverMetaAct) that
    			// adds it to a summary file, then this summary file is
    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

        def "single transform operations are captured"() {
            createDirs("producer", "consumer")
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithColorTransformImplementation()
            setupExternalDependency()
    
            buildFile << """
                project(":consumer") {
                    dependencies {
                        implementation project(":producer")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then: // new path, should skip consumer
            result.assertTasksNotSkipped(":common:producer")
            assertTransformationsExecuted(
                singleStep('common.jar'),
            )
    
            when:
            run ":app:resolveGreen", "-DcommonOutputDir=out", "-DcommonFileName=common-blue.jar"
    
            then: // new name, should skip consumer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

                when:
                consumer.accept(property)
    
                then:
                noExceptionThrown()
    
                where:
                consumer << safeConsumers()
            }
    
            def "calling #consumer throws exception if added collection provider references the property"(
                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

                when:
                consumer.accept(property)
    
                then:
                noExceptionThrown()
    
                where:
                consumer << safeConsumers()
            }
    
            def "calling #consumer throws exception if added collection provider references the property"(
                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - bar
      - foo
    All of them match the consumer attributes:
      - Variant 'bar' capability test:b:unspecified:
          - Unmatched attribute:
              - Provides buildType 'release' but the consumer didn't ask for it
      - Variant 'foo' capability test:b:unspecified:
          - Unmatched attributes:
              - Provides buildType 'release' but the consumer didn't ask for it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            buildFile """
                abstract class Consumer extends DefaultTask {
                    @${ServiceReference.name}('counter')
                    abstract Property<CountingService> getCounter()
    
                    @TaskAction
                    def go() {
                        println("Service is not used")
                    }
                }
                task missingRequiredService(type: Consumer) {}
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            processSearchRoles(result, entryDn -> {
                final String name = getSearchRoleName(entryDn);
                if (name != null) {
                    consumer.accept(entryDn, name);
                }
            });
        }
    
        protected void processSearchRoles(final List<SearchResult> result, final Consumer<String> consumer) throws NamingException {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            failure.assertHasCause("""No matching variant of org:test:1.0 was found. The consumer was configured to find a component for use during runtime, as well as attribute 'custom' with value 'c1' but:
      - Variant 'api' declares a component, as well as attribute 'custom' with value 'c1':
          - Incompatible because this component declares a component for use during compile-time and the consumer needed a component for use during runtime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            }
    
            def "calling #consumer throws exception with proper chain if wrapped property sets convention to itself"(
                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
                def prop = property()
                def provider = property().convention(prop)
                prop.set(provider)
    
                when:
                consumer.accept(provider)
    
                then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
Back to top