Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,055 for runAction (0.15 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    Copyright (c) 2007-2014 IOLA and Ole Laursen.
    Licensed under the MIT license.
    
    */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/zz_generated.deepcopy.go

    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExemptPriorityLevelConfiguration.
    func (in *ExemptPriorityLevelConfiguration) DeepCopy() *ExemptPriorityLevelConfiguration {
    	if in == nil {
    		return nil
    	}
    	out := new(ExemptPriorityLevelConfiguration)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:41 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/DeclarativeReflectionToObjectConverter.kt

            origin: ObjectOrigin.ConfiguringLambdaReceiver
        ): Any? = objectByIdentity(ObjectAccessKey.ConfiguringLambda(origin.receiver, origin.function)) {
            val function = origin.function
            val receiverInstance = getObjectByResolvedOrigin(origin.receiver)
                ?: error("Tried to invoke a function $function on a null receiver ${origin.receiver}")
    
            invokeFunctionAndGetResult(receiverInstance, origin).capturedValue
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

    function enableTooltips() {
        $('[data-toggle="tooltip"]').tooltip();
    }
    
    function enableSectionSign() {
        $('.data-row').mouseenter(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '1');
        }).mouseleave(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '0');
        });
    
        $('.section-sign').click(function () {
            var $temp = $("<input>");
            $("body").append($temp);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/release/content/script.js

    $(function() {
      function injectIssues(url, insertAfter, idBase, loadingText, messageFunction) {
        var loadingPara = $("<p class='" + idBase + "-loading'>" + loadingText + " …</p>").insertAfter(insertAfter);
        var animate = true;
        var paraFadeOut = function() {
          loadingPara.fadeOut("80", animate ? paraFadeIn : null);
        };
        var paraFadeIn = function() {
          loadingPara.fadeIn("80", animate ? paraFadeOut : null);
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

          extends AbstractTransformFuture<I, O, Function<? super I, ? extends O>, O> {
        TransformFuture(
            ListenableFuture<? extends I> inputFuture, Function<? super I, ? extends O> function) {
          super(inputFuture, function);
        }
    
        @Override
        @ParametricNullness
        O doTransform(Function<? super I, ? extends O> function, @ParametricNullness I input) {
          return function.apply(input);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

    	types "k8s.io/apimachinery/pkg/types"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	types "k8s.io/apimachinery/pkg/types"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

    }
    
    
    /**
     * Adapts an unary Kotlin function to an unary Groovy [Closure].
     *
     * @param T the type of the single argument to the closure.
     * @param V the return type.
     * @param function the function to be adapted.
     * @param owner optional owner of the Closure.
     * @param thisObject optional _this Object_ of the Closure.
     *
     * @see [Closure]
     */
    class KotlinClosure1<in T : Any?, V : Any>(
        val function: T.() -> V?,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

        @Test
        fun `can adapt parameterless function using KotlinClosure0`() {
    
            fun closure(function: () -> String) = KotlinClosure0(function)
    
            assertEquals(
                "GROOVY",
                closure { "GROOVY" }.call()
            )
        }
    
        @Test
        fun `can adapt parameterless null returning function using KotlinClosure0`() {
            fun closure(function: () -> String?) = KotlinClosure0(function)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top