Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,062 for delegated (0.16 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/ApiMemberSelector.java

    import static org.objectweb.asm.Opcodes.ACC_SUPER;
    
    /**
     * Visits each {@link Member} of a given class and selects only those members that
     * are part of its API.
     * Selected members are delegated to an adapter that determines how to further
     * process those members (e.g. stripping out method bodies), and how to write a
     * new "API class" with them.
     */
    public class ApiMemberSelector extends ClassVisitor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

       * will be created by invoking #newThread(Runnable) on this backing {@link ThreadFactory}.
       *
       * @param backingThreadFactory the backing {@link ThreadFactory} which will be delegated to during
       *     thread creation.
       * @return this for the builder pattern
       * @see MoreExecutors
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

       * will be created by invoking #newThread(Runnable) on this backing {@link ThreadFactory}.
       *
       * @param backingThreadFactory the backing {@link ThreadFactory} which will be delegated to during
       *     thread creation.
       * @return this for the builder pattern
       * @see MoreExecutors
       */
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. plugin/pkg/admission/imagepolicy/admission.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package imagepolicy contains an admission controller that configures a webhook to which policy
    // decisions are delegated.
    package imagepolicy
    
    import (
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"strings"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/api/imagepolicy/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

            assertThat(container["bar"].foo, equalTo("typed access"))
            assertThat(container["bar"].bar, equalTo("typed configuration"))
        }
    
        @Test
        fun `can access named element via delegated property`() {
    
            val element = DomainObject()
            val provider = mockDomainObjectProviderFor(element)
            val container = mock<NamedDomainObjectCollection<DomainObject>> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top