Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,083 for Applies (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    [[sec:gradle_plugin_dev_interactions]]
    == Interactions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Rel_Neighbor(pluginPlugin, pluginEmbedded, "Configures")
                Rel(pluginPlugin, pluginPrecompiled, "Configures")
                Rel_Neighbor(pluginPrecompiled, pluginDevPlugin, "Applies", "and configures")
            }
    
    
            Container_Boundary(tapiBuilder, "IDE ToolingAPI Models") {
    
                Component(tapiModels, "TAPI Models", "classpath, sourcepath, implicit imports, user reports")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/build.gradle

    }
    // end::use-plugin[]
    
    // tag::args[]
    model {
        components {
            main(NativeLibrarySpec) {
                binaries.withType(SharedLibraryBinarySpec) {
                    // Define a preprocessor macro that only applies to shared libraries
                    cppCompiler.define "DLL_EXPORT"
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 379 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/optimize.cc

    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir::quant {
    namespace {
    
    // Applies optimization after quantization.
    class OptimizePass
        : public PassWrapper<OptimizePass, OperationPass<func::FuncOp>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OptimizePass)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. cmd/import-boss/README.md

      - A `SelectorRegexp`, to select the import paths that the rule applies to.
      - A list of `AllowedPrefixes`
      - A list of `ForbiddenPrefixes`
    
    An import is allowed if it matches at least one allowed prefix and does not
    match any forbidden prefixes.
    
    Rules also have a boolean `Transitive` option. When this option is true, the
    rule is applied to transitive imports.
    
    Example:
    
    ```json
    {
      "Rules": [
        {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1beta1/types.go

    // 3. deny by default
    
    // 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.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/filters.go

    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    type (
    	Filter            func(echo.Instances) echo.Instances
    	CombinationFilter func(from echo.Instance, to echo.Instances) echo.Instances
    )
    
    // From applies each of the filter functions in order to allow removing workloads from the set of clients.
    // Example:
    //
    //	echotest.New(t, apps).
    //	  From(echotest.SimplePodServiceAndAllSpecial, echotest.NoExternalServices).
    //	  Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. hack/testdata/multi-resource-1.yaml

    # Tests that initial failures to not block subsequent applies.
    # Pod must be before namespace, so it initially fails. Second
    # apply of pod should succeed, since namespace finally exists.
    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      namespace: multi-resource-ns
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 462 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenCustomPackagingRealWorldIntegrationTest.groovy

            when:
            succeeds('resolve')
    
            then:
            file('libs').assertHasDescendants('ha-api-3.1.7.jar')
        }
    
        def 'resolve maven module with non-existing custom packaging artifact - applies java plugin'() {
            given:
            buildFile.text = '''plugins {
                id 'java'
            }
            '''.stripIndent() + buildFile.text
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/provider/PluginRequestsHandlerTest.kt

    import org.gradle.plugin.use.internal.PluginRequestApplicator
    
    import org.junit.Test
    
    
    class PluginRequestsHandlerTest {
    
        @Test
        fun `applies plugins after merging auto-applied plugin requests`() {
    
            // given:
            val pluginManager = mock<PluginManagerInternal>()
            val target = mock<ProjectInternal> {
                on { this.pluginManager } doReturn pluginManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top