Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,779 for Applies (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GradleExtensions.kt

     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.Plugin
    import org.gradle.api.invocation.Gradle
    import org.gradle.api.plugins.PluginAware
    
    
    /**
     * Applies the plugin of the given type [T]. Does nothing if the plugin has already been applied.
     *
     * The given class should implement the [Plugin] interface, and be parameterized for a
     * compatible type of `this`.
     *
     * @param T the plugin type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ExtractedRuleSource.java

    import org.gradle.model.internal.core.MutableModelNode;
    import org.gradle.model.internal.registry.ModelRegistry;
    
    import java.util.List;
    
    public interface ExtractedRuleSource<T> {
        /**
         * Applies the rules of this rule source to the given element.
         */
        void apply(ModelRegistry modelRegistry, MutableModelNode target);
    
        /**
         * Returns the set of plugins required by the rules of this rule source.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/TargetPlatformConfiguration.java

    public interface TargetPlatformConfiguration {
        /**
         * Returns whether a platform is supported or not.
         */
        boolean supportsPlatform(NativePlatformInternal targetPlatform);
    
        /**
         *  applies a platform specific toolchain configuration
         */
        void apply(DefaultGccPlatformToolChain platformToolChain);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/runtime/cgo/mmap.go

    import _ "unsafe"
    
    // When using cgo, call the C library for mmap, so that we call into
    // any sanitizer interceptors. This supports using the memory
    // sanitizer with Go programs. The memory sanitizer only applies to
    // C/C++ code; this permits that code to see the Go code as normal
    // program addresses that have been initialized.
    
    // To support interceptors that look for both mmap and munmap,
    // also call the C library for munmap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterAppliesTo.java

     * limitations under the License.
     */
    package org.gradle.plugins.ide.eclipse.model;
    
    /**
     * Specifies the type of resource that the Eclipse {@link ResourceFilter} applies to.
     *
     * @since 3.5
     */
    public enum ResourceFilterAppliesTo {
        FILES,
        FOLDERS,
        FILES_AND_FOLDERS;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 861 bytes
    - Viewed (0)
  6. platforms/jvm/distributions-jvm/build.gradle.kts

        pluginsRuntimeOnly(project(":java-platform")) {
            because("Aspirationally, we likely need a platform-base plugin that would ship in the same distribution as dependency-management, and isn't java specific - unfortunately this plugin applies the JvmEcosystemPlugin.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFilePermissions.java

         * <p>
         * For further details on permissions see {@link ConfigurableUserClassFilePermissions}.
         * <p>
         * Note that the provided configuration action only applies incremental modifications on top of whatever permission
         * the user has at the moment and that the default values permissions start out are different for files and directories
         * (see {@link UserClassFilePermissions}).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	NilPodAffinity PodAffinityKind = iota
    	// PodAffinityWithRequiredReq applies a HARD requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredReq
    	// PodAffinityWithPreferredReq applies a SOFT requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithPreferredReq
    	// PodAffinityWithRequiredPreferredReq applies HARD and SOFT requirements to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredPreferredReq
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/instance/ModelElementState.java

    import groovy.lang.Closure;
    import org.gradle.model.internal.core.MutableModelNode;
    
    public interface ModelElementState extends GeneratedViewState {
        MutableModelNode getBackingNode();
    
        /**
         * Applies the given action to the value of the given property.
         */
        void apply(String name, Closure<?> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 992 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults.go

    	defaultCacheSize  int32 = 1000
    	defaultAPIVersion       = "v1"
    )
    
    func addDefaultingFuncs(scheme *runtime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    // SetDefaults_KMSConfiguration applies defaults to KMSConfiguration.
    func SetDefaults_KMSConfiguration(obj *KMSConfiguration) {
    	if obj.Timeout == nil {
    		obj.Timeout = defaultTimeout
    	}
    
    	if obj.APIVersion == "" {
    		obj.APIVersion = defaultAPIVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top