Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 572 for addLine (0.1 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            then:
            1 * listener1.doSomething("param")
            1 * listener2.doSomething("param")
            1 * listener3.doSomething("param")
            0 * _
        }
    
        def "removes duplicates when adding listeners as a batch"() {
            def listener1 = Mock(TestListener)
            def listener2 = Mock(TestListener)
            def listener3 = Mock(TestListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandler.java

        private Dependency doAdd(Configuration configuration, Object dependencyNotation, @Nullable Closure configureClosure) {
            if (dependencyNotation instanceof Configuration) {
                throw new GradleException("Adding a Configuration as a dependency is no longer allowed as of Gradle 8.0.");
            } else if (dependencyNotation instanceof ProviderConvertible<?>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 08:14:09 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

            return referencedProjects;
        }
    
        /**
         * The referenced projects of this Eclipse project (*not*: java build path project references).
         * <p>
         * Referencing projects does not mean adding a build path dependencies between them!
         * If you need to configure a build path dependency use Gradle's dependencies section or
         * eclipse.classpath.whenMerged { classpath -&gt; ... to manipulate the classpath entries
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

            def tasksContainerCallbackBuildOps = findCallbackActionBuildOps('task container callback')
            tasksContainerCallbackBuildOps.size > 0 // not necessary to track exact count here; adding removing build-in tasks should not break this
            tasksContainerCallbackBuildOps.every { it.details.applicationId == callbackPluginApplication.details.applicationId }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

     * {@code asMap} has a few subtleties. As long as the set of keys remains unchanged, adding or
     * removing mappings does not affect the key iteration order. However, if you remove all values
     * associated with a key and then add the key back to the multimap, that key will come last in the
     * key iteration order.
     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
     * existing key-value pair has no effect.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/LinkedHashMultimap.java

     * {@code asMap} has a few subtleties. As long as the set of keys remains unchanged, adding or
     * removing mappings does not affect the key iteration order. However, if you remove all values
     * associated with a key and then add the key back to the multimap, that key will come last in the
     * key iteration order.
     *
     * <p>The multimap does not store duplicate key-value pairs. Adding a new key-value pair equal to an
     * existing key-value pair has no effect.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/values.yaml

        # always skip the injection on pods that match that label selector, regardless of the global policy.
        # See https://istio.io/docs/setup/kubernetes/additional-setup/sidecar-injection/#more-control-adding-exceptions
        neverInjectSelector: []
        alwaysInjectSelector: []
        # injectedAnnotations are additional annotations that will be added to the pod spec after injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

                ManagedInstance target = (ManagedInstance) instance;
                modelNode.addReference(name, target.getManagedType(), target.getBackingNode(), descriptor);
            } else {
                modelNode.addLink(
                    ModelRegistrations.unmanagedInstance(
                        ModelReference.of(modelNode.getPath().child(name), type),
                        Factories.constant(instance)
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            }
                        }
                    }
                }
            """
    
            expect:
            succeeds 'help'
        }
    
    
        def "pluginManagement block supports adding rule based plugin repository"() {
            given:
            settingsFile << """
                pluginManagement {
                    resolutionStrategy.eachPlugin {
                        if(requested.id.name == 'noop') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

    A web-based, searchable dependency report is available by adding the --scan option."""
        }
    
        def "shows selected versions in case of a multi-phase conflict"() {
            given:
            mavenRepo.module("foo", "foo", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top