Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 516 for implying (0.18 sec)

  1. guava/src/com/google/common/collect/Maps.java

        }
    
        boolean apply(@CheckForNull Object key, @ParametricNullness V value) {
          // This method is called only when the key is in the map (or about to be added to the map),
          // implying that key is a K.
          @SuppressWarnings({"unchecked", "nullness"})
          K k = (K) key;
          return predicate.apply(Maps.immutableEntry(k, value));
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            when:
            run(":printTestSoftwareTypeExtensionConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
    
            and:
            outputContains("Applying SoftwareTypeImplPlugin")
            outputDoesNotContain("Applying AnotherSoftwareTypeImplPlugin")
        }
    
        def 'can declare and configure a custom software type from published plugin'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/pluginIdentifier/tests/pluginIdentifier.out

    Applying Android application plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 68 bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            String msg = indent + artifact;
            msg += " (";
            if (replacement.getVersion() != null) {
                msg += "applying version: " + replacement.getVersion() + ";";
            }
            if (replacement.getScope() != null) {
                msg += "applying artifactScope: " + replacement.getScope();
            }
            msg += ")";
            logger.debug(msg);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PostPluginResolutionFailuresIntegrationSpec.groovy

            fails("verify")
            failure.assertThatDescription(startsWith("An exception occurred applying plugin request [id: 'org.my.myplugin', version: '1.0']"))
            failure.assertHasLineNumber(3)
            failure.assertHasCause("Could not create plugin of type 'TestPlugin'.")
            failure.assertHasCause("broken plugin")
        }
    
        def "error applying plugin"() {
            pluginBuilder.addPlugin("throw new Exception('throwing plugin')", PLUGIN_ID)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

            /**
             * Causes the target scope to be closed by applying a default set of plugin requests that includes
             * the set of [auto-applied plugins][org.gradle.plugin.management.internal.autoapply.AutoAppliedPluginHandler].
             */
            object ApplyDefaultPluginRequests : StageTransition, Instruction()
    
            /**
             * Causes the target scope to be closed by applying the plugin requests collected during the execution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

    import java.util.Map;
    
    /**
     * Something that can have plugins applied to it.
     * <p>
     * The {@link #getPluginManager() plugin manager} can be used for applying and detecting whether plugins have been applied.
     * <p>
     * For more on writing and applying plugins, see {@link org.gradle.api.Plugin}.
     */
    @HasInternalProtocol
    public interface PluginAware {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvedVariant;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    /**
     * Represents a variant which is produced as the result of applying an artifact transform chain
     * to a root producer variant.
     */
    public class TransformedVariant implements HasAttributes {
        private final ResolvedVariant root;
        private final VariantDefinition chain;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    include::sample[dir="groovy",files="library-a/build.gradle[];library-b/build.gradle[]"]
    ====
    
    Note how applying a convention plugin to a subproject effectively declares its type.
    By applying `myproject.java-conventions` plugin we state: this is a "Java" project.
    By applying `myproject.library-conventions` plugin we state: this is a "Library" project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-jvm-test-fixtures/src/integTest/groovy/org/gradle/java/fixtures/StandaloneTestFixturesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Verifies that we can use test fixtures without applying other plugins. This is
     * important for integration with other ecosystems, for example, if a Kotlin or
     * Android project wants to use Java test fixtures without applying the Java plugin.
     */
    class StandaloneTestFixturesIntegrationTest extends AbstractIntegrationSpec {
    
        def "can compile test fixtures"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top