Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,431 for runAction (0.56 sec)

  1. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheRetainingDataFromPreviousBuildTest.groovy

            cache.get("c", function)
    
            then:
            1 * function.apply("a") >> new Object()
            1 * function.apply("b") >> notToBeKept
            1 * function.apply("c") >> notToBeKept
            0 * function._
    
            when:
            listenerManager.getBroadcaster(BuildSessionLifecycleListener).beforeComplete()
            cache.get("a", function)
            cache.get("b", function)
            cache.get("c", function)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/cache/internal/AbstractCrossBuildInMemoryCacheTest.groovy

            def b = new Object()
            def function = Mock(Function)
    
            given:
            function.apply("a") >> a
            function.apply("b") >> b
    
            def cache = newCache()
    
            expect:
            cache.get("a", function) == a
            cache.get("b", function) == b
            cache.get("a", function) == a
        }
    
        def "creates each entry once"() {
            def a = new Object()
            def b = new Object()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler_test.cc

      core::ScopedUnref profiler_ref(profiler);
    
      NameAttrList function;
      function.set_name("TestFunc");
    
      EXPECT_TRUE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kAsync, 0));
      EXPECT_TRUE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kLazy, 0));
      EXPECT_TRUE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kStrict, 0));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 21:06:33 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        map.put("Null", null);
        Function<String, @Nullable Integer> function = Functions.forMap(map, 42);
    
        assertEquals(1, function.apply("One").intValue());
        assertEquals(42, function.apply("Two").intValue());
        assertEquals(3, function.apply("Three").intValue());
        assertNull(function.apply("Null"));
    
        new EqualsTester()
            .addEqualityGroup(function, Functions.forMap(map, 42))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/adminlte.min.js

    i=e.prototype;return i.toggle=function(e){e.parents("li").toggleClass(s),t(e).prop("checked")?this.check(e):this.unCheck(t(e))},i.check=function(t){this._config.onCheck.call(t)},i.unCheck=function(t){this._config.onUnCheck.call(t)},i._init=function(){var e=this;t(n).find("input:checkbox:checked").parents("li").toggleClass(s),t(n).on("change","input:checkbox",(function(i){e.toggle(t(i.target))}))},e._jQueryInterface=function(i){return this.each((function(){var n=t(this).data("lte.todolist"),s=t.extend({}...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  6. src/main/webapp/js/clipboard.min.js

    e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=0)}([function(t,e,n){"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat May 28 04:16:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CollectSpliterators.java

    import java.util.Comparator;
    import java.util.Spliterator;
    import java.util.function.Consumer;
    import java.util.function.DoubleConsumer;
    import java.util.function.Function;
    import java.util.function.IntConsumer;
    import java.util.function.IntFunction;
    import java.util.function.LongConsumer;
    import java.util.function.Predicate;
    import java.util.stream.IntStream;
    import javax.annotation.CheckForNull;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            val thisTypeRef = inType.toDataTypeRef()
    
            val returnType = function.returnType
    
            checkInScope(returnType, preIndex)
            val returnClass = function.returnType.classifier as KClass<*>
            val fnParams = function.parameters
    
            val semanticsFromSignature = inferFunctionSemanticsFromSignature(function, function.returnType, inType, preIndex, configureLambdas)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_s390x.go

    }
    
    // function is the function code for the named function.
    type function uint8
    
    const (
    	// KM{,A,C,CTR} function codes
    	aes128 function = 18 // AES-128
    	aes192 function = 19 // AES-192
    	aes256 function = 20 // AES-256
    
    	// K{I,L}MD function codes
    	sha1     function = 1  // SHA-1
    	sha256   function = 2  // SHA-256
    	sha512   function = 3  // SHA-512
    	sha3_224 function = 32 // SHA3-224
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 17:11:03 UTC 2020
    - 5.9K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    e._triggerCloseEvent=function(t){var e=o.Event(u.CLOSE);return o(t).trigger(e),e},e._removeElement=function(t){var e=this;o(t).removeClass(_),P.supportsTransitionEnd()&&o(t).hasClass(d)?o(t).one(P.TRANSITION_END,function(n){return e._destroyElement(t,n)}).emulateTransitionEnd(150):this._destroyElement(t)},e._destroyElement=function(t){o(t).detach().trigger(u.CLOSED).remove()},t._jQueryInterface=function(e){return this.each(function(){var n=o(this),i=n.data(l);i||(i=new t(this),n.data(l,i)),"clos...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
Back to top