Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,702 for Configurer (0.4 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

        }
    
        /**
         * Creates an empty immutable collection.
         */
        protected abstract C emptyCollection();
    
        protected Configurer getConfigurer(boolean ignoreAbsent) {
            return new Configurer(ignoreAbsent);
        }
    
        protected void withActualValue(Action<Configurer> action) {
            setToConventionIfUnset();
            action.execute(getConfigurer(true));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultObjectConfigurationAction.java

            ScriptHandler scriptHandler = scriptHandlerFactory.create(scriptSource, classLoaderScopeChild);
            ScriptPlugin configurer = configurerFactory.create(scriptSource, scriptHandler, classLoaderScopeChild, classLoaderScope, false);
            for (Object target : targets) {
                configurer.apply(target);
            }
        }
    
        private void applyPlugin(Class<? extends Plugin> pluginClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementAdapter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.internal.configurer;
    
    /**
     * Adapts any type of element to the generic {@link HierarchicalElementDeduplicator}.
     *
     * @param <T> the type of element to de-duplicate
     */
    public interface HierarchicalElementAdapter<T> {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                    builder.setStandardInput(connectStdIn());
    
                    builder.args(invocation.args);
    
                    ExecHandlerConfigurer configurer = OperatingSystem.current().isWindows() ? new WindowsConfigurer() : new UnixConfigurer();
                    configurer.configure(builder);
                    getLogger().debug(String.format("Execute in %s with: %s %s", builder.getWorkingDir(), builder.getExecutable(), builder.getArgs()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

         */
        private ValueCollector getExplicitCollector() {
            return valueState.explicitValue(value, defaultValue);
        }
    
        private Configurer getConfigurer() {
            return new Configurer();
        }
    
        @VisibleForTesting
        protected boolean isExplicit() {
            return valueState.isExplicit();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/EclipseModelAwareUniqueProjectNameProvider.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.internal.configurer;
    
    import org.gradle.api.Project;
    import org.gradle.api.internal.project.ProjectState;
    import org.gradle.api.internal.project.ProjectStateRegistry;
    import org.gradle.plugins.ide.eclipse.model.EclipseModel;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

         * <p>
         * If not additional data was configured for this problem, then a new instance will be created. If additional data was already configured, then the existing instance will be used and the configuration will be applied to it.
         *
         * @param specType the type of the additional data configurer (see the AdditionalDataSpec interface for the list of supported types)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicatorTest.groovy

            def root = new DummyElement(name)
            elements += root
            configure(root, config)
        }
    
        private idNameElement(String name, Closure config = {}) {
            def root = new DummyElement(name, name + "Id")
            elements += root
            configure(root, config)
        }
    
        private configure(Object target, Closure config) {
            config.resolveStrategy = Closure.DELEGATE_FIRST
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. docs/fr/docs/deployment/https.md

    Mais c'est beaucoup plus complexe que cela.
    
    !!! tip
        Si vous êtes pressé ou si cela ne vous intéresse pas, passez aux sections suivantes pour obtenir des instructions étape par étape afin de tout configurer avec différentes techniques.
    
    Pour apprendre les bases du HTTPS, du point de vue d'un utilisateur, consultez <a href="https://howhttps.works/"
    class="external-link" target="_blank">https://howhttps.works/</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:45:30 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.internal.configurer;
    
    import com.google.common.base.Joiner;
    import com.google.common.base.Splitter;
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Iterables;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top