Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSourceControl (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettings.java

        @Override
        public void sourceControl(Action<? super SourceControl> configuration) {
            configuration.execute(getSourceControl());
        }
    
        @Override
        @Inject
        public abstract SourceControl getSourceControl();
    
        @Override
        public void enableFeaturePreview(String name) {
            Feature feature = Feature.withName(name);
            if (feature.isActive()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

            delegate.startParameter
    
        override fun buildCache(action: Action<in BuildCacheConfiguration>) =
            delegate.buildCache(action)
    
        override fun getSourceControl(): SourceControl =
            delegate.sourceControl
    
        override fun getProviders(): ProviderFactory =
            delegate.providers
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         */
        void sourceControl(Action<? super SourceControl> configuration);
    
        /**
         * Returns the source control configuration.
         *
         * @since 4.4
         */
        SourceControl getSourceControl();
    
        /**
         * Enables a feature preview by name.
         *
         * @param name the name of the feature to enable
         *
         * @since 4.6
         */
        @Adding
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top