Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,498 for runActions (0.3 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildtree/IntermediateBuildActionRunner.java

            List<NestedAction<T>> wrappers = new ArrayList<>(actions.size());
            for (Supplier<T> action : actions) {
                wrappers.add(new NestedAction<>(buildOperationDescription, action));
            }
            runActions(wrappers);
    
            List<T> results = new ArrayList<>(actions.size());
            List<Throwable> failures = new ArrayList<>();
            for (NestedAction<T> wrapper : wrappers) {
                Try<T> value = wrapper.value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Functions.java

     *
     * <p>All methods return serializable functions as long as they're given serializable parameters.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/FunctionalExplained">the use of {@code Function}</a>.
     *
     * @author Mike Bostock
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Functions {
      private Functions() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Functions.java

     *
     * <p>All methods return serializable functions as long as they're given serializable parameters.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/FunctionalExplained">the use of {@code Function}</a>.
     *
     * @author Mike Bostock
     * @author Jared Levy
     * @since 2.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class Functions {
      private Functions() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. src/internal/types/testdata/examples/functions.go

    // (that would indicate a slice type). Thus, generic functions cannot
    // have empty type parameter lists, either. This is a syntax error.
    
    func h[] /* ERROR "empty type parameter list" */ () {}
    
    func _() {
    	h /* ERROR "cannot index" */ [] /* ERROR "operand" */ ()
    }
    
    // Generic functions must have a function body.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/functions.kt

    Ilya Kirillov <******@****.***> 1665754261 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 475 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/trim-functions-tf.mlir

    Robert Suderman <******@****.***> 1653608842 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 565 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    Christian Sigg <******@****.***> 1714640622 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  8. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

                    @TaskAction
                    public void runAction0() {}
                }
            """
            buildFile << """
                task myTask(type: MyTask) {
                    conventionMapping.someProperty = {"Foo"}
                }
            """
    
            expect:
            for(int i = 0; i < 35; i++) {
                myTask.text = myTask.text.replace("runAction$i", "runAction${i + 1}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/loader.h

    // indicated metagraph.
    // The recommended way to load a saved model is to call LoadSavedModel,
    // which provides an already initialized Metagraph, Session, and DebugInfo.
    Status RestoreSession(const RunOptions& run_options,
                          const MetaGraphDef& meta_graph, const string& export_dir,
                          std::unique_ptr<Session>* session);
    
    // Initialize a session which wraps this metagraph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

            val daemonHeapMb = memoryHogMb * 5 + 400
            for (run in 1..runs) {
                println("Run number $run")
                myTask.writeText(myTask.readText().replace("runAction${run - 1}", "runAction$run"))
                buildWithDaemonHeapSize(daemonHeapMb, "myTask").apply {
                    compilationCache {
                        assertCacheHits(run)
                    }
                    classLoadingCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top