Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 426 for delegated (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

    /**
     * Selects a {@link ScriptPluginFactory} suitable for handling a given build script based
     * on its file name. Build script file names ending in ".gradle" are supported by the
     * {@link DefaultScriptPluginFactory}. Other files are delegated to the first available
     * matching implementation of the {@link ScriptingLanguage} SPI. If no provider
     * implementations matches for a given file name, handling falls back to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertySetterSymbol.kt

        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
            if (fir is FirSyntheticPropertyAccessor) {
                fir.delegate.symbol.callableId
            } else null
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

            fixture.assertStateStored {
                projectsConfigured(":", ":a", ":b")
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/28204")
        def "access to #description delegated property value is causing a violation"() {
            given:
            settingsFile << """
                include("a")
            """
            buildKotlinFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * e.g,
         * ```
         * interface A { fun x() }
         * class B(a: A) : A by a
         * ```
         * the `B.foo` function will be generated by Kotlin compiler
         */
        DELEGATED,
    
    
        JAVA_SYNTHETIC_PROPERTY,
    
        /**
         * Declaration is backing field of some member property
         * A symbol kind of [KaBackingFieldSymbol]
         *
         * @see KaBackingFieldSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/start.go

    		// upload config. If the telemetryChildVar variable is still set to "1",
    		// that delegated go command may think that it is itself a telemetry
    		// child.
    		//
    		// On the other hand, if telemetryChildVar were simply unset, then the
    		// delegated go commands would fork themselves recursively. Short-circuit
    		// this recursion.
    		os.Setenv(telemetryChildVar, "2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		//     different apiserver (thus its object count is not updated)
    		// we don't have a way to distinguish between those situations.
    		// However, in case c, the request is delegated to a different apiserver,
    		// and thus its cost for our server is minimal. To avoid the situation
    		// when aggregated API calls are overestimated, we allocate the minimum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Re-sort execution order such that delegated ops stay together";
      let constructor = "CreatePartitionedTopologicalSortPass()";
        let description = [{
          This transformation reorders operations such that operations that will be
          executed by the Flex delegate will be followed by another Flex delegated
          operator, if possible. The reordering uses the same greedy procedure that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

        override val typeArgumentsMapping: Map<KaTypeParameterSymbol, KaType> get() = withValidityAssertion { emptyMap() }
    }
    
    /**
     * A delegated call to constructors. For example
     * ```
     * open class SuperClass(i: Int)
     * class SubClass1: SuperClass(1) // a call to constructor of `SuperClass` with single argument `1`
     * class SubClass2 : SuperClass {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    Each init script has a link:{groovyDslPath}/org.gradle.api.invocation.Gradle.html[Gradle] instance associated with it.
    Any property reference and method call in the init script will be delegated to this `Gradle` instance.
    
    Each init script implements the link:{groovyDslPath}/org.gradle.api.Script.html[Script] interface.
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    ====
    
    [.multi-language-text.lang-kotlin]
    The link:https://kotlinlang.org/docs/delegated-properties.html[Kotlin delegated properties] are part of the Gradle Kotlin DSL.
    You need to explicitly specify the type as `String`.
    If you need to branch depending on the presence of the property, you can also use `String?` and check for `null`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top