Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSourceControl (0.19 sec)

  1. 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)
  2. 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