Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for runActions (0.15 sec)

  1. src/cmd/go/internal/test/test.go

    	}
    
    	if installAction != nil {
    		if runAction != installAction {
    			installAction.Deps = append(installAction.Deps, runAction)
    		}
    		if cleanAction != nil {
    			cleanAction.Deps = append(cleanAction.Deps, installAction)
    		}
    	}
    
    	return buildAction, runAction, printAction, nil
    }
    
    func addTestVet(b *work.Builder, p *load.Package, runAction, installAction *work.Action) {
    	if testVet.off {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

    // In either case, it deletes `desc`.
    TF_CAPI_EXPORT extern TF_Operation* TF_FinishOperation(
        TF_OperationDescription* desc, TF_Status* status);
    
    // TF_Operation functions.  Operations are immutable once created, so
    // these are all query functions.
    
    TF_CAPI_EXPORT extern const char* TF_OperationName(TF_Operation* oper);
    TF_CAPI_EXPORT extern const char* TF_OperationOpType(TF_Operation* oper);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///
    /// The only time the pointer to the `TF_*` structures from section 1 is not
    /// marked `const` in these functions is when these function are either
    /// allocating or deallocating the plugin specific data. That is, in the 4
    /// `cleanup` functions (one for each data structure), the `init` function for
    /// `TF_Filesystem` and the `new_*` methods of `TF_FilesystemOps` to initialize
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  4. src/testing/testing.go

    //
    // where Xxx does not start with a lowercase letter. The function name
    // serves to identify the test routine.
    //
    // Within these functions, use the Error, Fail or related methods to signal failure.
    //
    // To write a new test suite, create a file that
    // contains the TestXxx functions as described here,
    // and give that file a name ending in "_test.go".
    // The file will be excluded from regular
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    }
    
    // SetCgoTraceback records three C functions to use to gather
    // traceback information from C code and to convert that traceback
    // information into symbolic information. These are used when printing
    // stack traces for a program that uses cgo.
    //
    // The traceback and context functions may be called from a signal
    // handler, and must therefore use only async-signal safe functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    Assumption of this pass:
     . Compound resource operations have already been decomposed.
     . Dead functions have already been removed, as resource arguments in dead
       functions can cause the pass to fail.
    
    #### Options
    ```
    -functions : Comma separated list of functions whose resources read/writes should be promoted to function inputs/outputs.
    ```
    ### `-tf-promote-var-handles-to-args`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // forwarding.
      for (Region& region : op_->getRegions()) {
        ForwardStoreToLoad(&region.front());
      }
    
      llvm::SetVector<Value> all_resources;
      bool is_func = false;
      // For functions, the resources to analyze are the function arguments.
      // Otherwise, its the region captures.
      if (func::FuncOp func = dyn_cast<func::FuncOp>(op_)) {
        is_func = true;
        Region& body = func.getBody();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            call_op, result_types, args,
            FlatSymbolRefAttr::get(new_quant_func_name));
    
        return success();
      }
    
      // For composite functions followed by Dequantize ops, merges the Dequantize
      // op into the functions by creating quantized functions with float output.
      LogicalResult mergeDequantizeOpFollowingQuantizedFunction(
          TF::PartitionedCallOp call_op, const SmallVector<Value, 4>& args,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    Kotlin extension functions are package-level functions and you can learn how to locate the name of the type declaring a given Kotlin extension in the link:{kotlin-reference}java-to-kotlin-interop.html#package-level-functions[Package-Level Functions] section of the Kotlin reference documentation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MapsTest.java

        try {
          Maps.toMap((Iterable<String>) strings, Functions.constant("foo"));
          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      public void testToMapWithNullValues() {
        Iterable<String> strings = ImmutableList.of("one", "two", "three");
        try {
          Maps.toMap(strings, Functions.constant(null));
          fail();
        } catch (NullPointerException expected) {
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
Back to top