Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,402 for runActions (0.15 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

      final HashFunction[] functions;
    
      AbstractCompositeHashFunction(HashFunction... functions) {
        for (HashFunction function : functions) {
          checkNotNull(function);
        }
        this.functions = functions;
      }
    
      /**
       * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

      final HashFunction[] functions;
    
      AbstractCompositeHashFunction(HashFunction... functions) {
        for (HashFunction function : functions) {
          checkNotNull(function);
        }
        this.functions = functions;
      }
    
      /**
       * Constructs a {@code HashCode} from the {@code Hasher} objects of the functions. Each of them
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/doc.go

    // Package unusedresult defines an analyzer that checks for unused
    // results of calls to certain pure functions.
    //
    // # Analyzer unusedresult
    //
    // unusedresult: check for unused results of calls to some functions
    //
    // Some functions like fmt.Errorf return a result and have no side
    // effects, so it is always a mistake to discard the result. Other
    // functions may return an error that must not be ignored, or a cleanup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 793 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/invalid_input.mlir

    func.func @main() {
      ^bb:
        cf.br ^bb1
      ^bb1:
        func.return
    }
    
    // CHECK: functions must be of a single Graph with single op Islands: only single block functions are supported
    
    // -----
    
    // Tests invalid functions for exporting to Graph/GraphDef.
    
    func.func @main() {
      func.return
    }
    
    // CHECK: functions must be of a single Graph with single op Islands: first op in function is not a tf_executor.graph
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top