Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,329 for Applied (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/plugin/management/internal/autoapply/AutoAppliedDevelocityPlugin.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.plugin.management.internal.autoapply;
    
    import org.gradle.plugin.use.PluginId;
    import org.gradle.plugin.use.internal.DefaultPluginId;
    
    /**
     * Auto-applied Develocity plugin information.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.ProxyUID, "u",
    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    		"Specify the GID of the user for which the redirection is not applied (same default value as -u param).",
    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.InboundInterceptionMode, "m",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/build.gradle.kts

        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Java plugin, and its supporting classes.  This plugin is used as the basis for building a Java library or application by more specific plugins, and is sometimes applied by other JVM language projects."
    
    dependencies {
        api(project(":core"))
        api(project(":core-api"))
        api(project(":language-java"))
        api(project(":plugins-jvm-test-suite"))
        api(project(":publish"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. releasenotes/notes/50933.yaml

    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 13:58:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PluginDependenciesSpecExtensions.kt

    
    /**
     * The `gradle-enterprise` plugin.
     *
     * Visit the [Develocity Plugin User Manual](https://docs.gradle.com/enterprise/gradle-plugin/) for additional information.
     *
     * By default, the applied plugin version will be the same as the one used by the `--scan` command line option.
     *
     * You can also use e.g. `` `gradle-enterprise` version "3.0" `` to request a different version.
     *
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/build.gradle.kts

     * 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.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains a basic JVM plugin used to compile, test, and assemble Java source; often applied by other JVM plugins (though named java-base, jvm-base would be a more proper name)."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorProvider.kt

        /**
         * Creates a [KaSubstitutor] based on the inheritance relationship between [subClass] and [superClass].
         *
         * The semantic of resulted [KaSubstitutor] is the substitutor that should be applied to a member of [superClass],
         * so it can be called on an instance of [subClass].
         *
         * Basically, it's a composition of inheritance-based substitutions for all the inheritance chain.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/internal/plugins/software/SoftwareType.java

         */
        String name();
    
        /**
         * The model type used to configure the software type.  Note that this class should be the same type or a super type of the return type
         * of the method that this annotation is applied to.  If this value is not set, the public model type will default to the return type of
         * the method.
         *
         * @since 8.9
         */
        Class<?> modelPublicType() default Void.class;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 19:19:32 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    By default, the cleanup runs in the background when the Gradle daemon is stopped or shut down.
    
    If using `--no-daemon`, it runs in the foreground after the build session.
    
    The following cleanup strategies are applied periodically (by default, once every 24 hours):
    
    - Version-specific caches in all `caches/<GRADLE_VERSION>/` directories are checked for whether they are still in use.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * @return the task object this method is applied to
         *
         * @since 4.2
         */
        Task doFirst(String actionName, Action<? super Task> action);
    
        /**
         * <p>Adds the given {@link Action} to the end of this task's action list.</p>
         *
         * @param action The action to add.
         * @return the task object this method is applied to
         */
        Task doLast(Action<? super Task> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top