Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,036 for Configurer (0.32 sec)

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

        }
    
        private Configurer getConfigurer() {
            return getConfigurer(false);
        }
    
        private Configurer getConfigurer(boolean ignoreAbsent) {
            return new Configurer(ignoreAbsent);
        }
    
        protected void withActualValue(Action<Configurer> action) {
            setToConventionIfUnset();
            action.execute(getConfigurer(true));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/DefaultUniqueProjectNameProvider.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 java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. docs/fr/docs/deployment/docker.md

    * Faire de votre application **FastAPI** une image/conteneur Docker avec une performance maximale. En environ **5 min**.
    * (Optionnellement) comprendre ce que vous, en tant que développeur, devez savoir sur HTTPS.
    * Configurer un cluster en mode Docker Swarm avec HTTPS automatique, même sur un simple serveur à 5 dollars US/mois. En environ **20 min**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top