Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,416 for Replies (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        /**
         * Applies the rules defined in the given rule source to this node.
         */
        void applyToSelf(ExtractedRuleSource<?> rules);
    
        /**
         * Applies an action that defines further rules in the given role to the child of this node that is addressed by the subject of the action.
         */
        void defineRulesForLink(ModelActionRole role, ModelAction action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoLimit.java

         */
        @Input
        String getCounter();
    
        /**
         * Sets the counter that applies to the limit.
         *
         * @param counter Counter
         */
        void setCounter(String counter);
    
        /**
         * The value that applies to the limit as defined by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/config/visibility/visibility.go

    // all namespaces or none
    type Instance string
    
    const (
    	// Private implies namespace local config
    	Private Instance = "."
    	// Public implies config is visible to all
    	Public Instance = "*"
    	// None implies service is visible to no one. Used for services only
    	None Instance = "~"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 09 07:58:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/defs.h

    // Implies must-compile semantics: either it will be compiled
    // with XLA, or an error will be thrown.
    extern const char* const kXlaMustCompileAttr;  // "_XlaMustCompile"
    
    // Implies auto-clustering: tagged nodes will be clustered and compiled with XLA
    // on a best-effort basis.
    extern const char* const kXlaCompileAttr;  // "_XlaCompile"
    
    // Implies auto-clustering within the given scope.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtContractBooleanExpression.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.KaParameterSymbol
    
    /**
     * Represents `booleanExpression` argument of [kotlin.contracts.SimpleEffect.implies].
     *
     * `booleanExpression` forms a boolean condition for
     * [org.jetbrains.kotlin.analysis.api.contracts.description.KaContractConditionalContractEffectDeclaration]. See
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPlugin.kt

    import org.gradle.kotlin.dsl.support.expectedKotlinDslPluginsVersion
    import org.gradle.plugin.devel.plugins.JavaGradlePluginPlugin
    
    
    /**
     * The `kotlin-dsl` plugin.
     *
     * - Applies the `java-gradle-plugin` plugin
     * - Applies the `kotlin-dsl.base` plugin
     * - Applies the `kotlin-dsl.precompiled-script-plugins` plugin
     *
     * @see JavaGradlePluginPlugin
     * @see KotlinDslBasePlugin
     * @see PrecompiledScriptPlugins
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 03 11:09:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/conventions.kt

    
    /**
     * A convention that applies a property assignment operation (e.g. foo = "bar").
     */
    class AssignmentRecordConvention(private val assignmentRecord: AssignmentRecord) :
        Convention<AssignmentRecordConventionReceiver> {
        override fun apply(receiver: AssignmentRecordConventionReceiver) {
            receiver.receive(assignmentRecord)
        }
    }
    
    
    /**
     * A convention that applies a data addition operation (e.g. addFoo("bar")).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/BuildActionCompatibilityMappingCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.WithOldConfigurationsSupport
    
    class BuildActionCompatibilityMappingCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "Applies idea module name compatibility mapping"() {
            given:
            settingsFile << """
                include 'a'
                include 'b'
            """
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

        /**
         * Applies the given rules to all items of the collection of the given type.
         *
         * @param type the type that the item must be/implement to have the rules applied
         * @param rules rules to apply
         */
        <S> void withType(Class<S> type, Class<? extends RuleSource> rules);
    
        /**
         * Applies the given action to each item in the collection, as each item is required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/rbac/v1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      // +listType=atomic
      repeated string verbs = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top