Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for runActions (0.16 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // The new while body:
      //
      // First, we need to construct the body and conditional functions. To do so,
      // we need to create the initial operand list that we'll need. This will
      // determine the type signature for the body and cond functions.
      std::vector<Value> tmp_while_operands;
      Append(tmp_while_operands, loop_operands_0);
      Append(tmp_while_operands, loop_operands_1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    }
    
    // The testing::internal::posix namespace holds wrappers for common
    // POSIX functions.  These wrappers hide the differences between
    // Windows/MSVC and POSIX systems.  Since some compilers define these
    // standard functions as macros, the wrapper cannot have the same name
    // as the wrapped function.
    
    namespace posix {
    
    // Functions with a different name on Windows.
    
    #if GTEST_OS_WINDOWS
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ppc64/asm.go

    	MASK_PLD_RT   = 0x03e00000 // Extract RT from the pld suffix.
    	MASK_OP_LD    = 0xfc000003
    	MASK_OP_ADDIS = 0xfc000000
    )
    
    // Generate a stub to call between TOC and NOTOC functions. See genpltstub for more details about calling stubs.
    // This is almost identical to genpltstub, except the location of the target symbol is known at link time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top