Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for arguments_ (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      return result;
    }
    
    // Removes the unused resource arguments, and the return values that forward the
    // removed arguments. If old_to_new_arg_indices is provided, it will store the
    // new argument index that corresponds to each original index (-1 means it is
    // removed). If remaining_resource_data_types is provided, it will store the
    // data types of the remaining resource arguments, where the indices are after
    // removing unused ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// `const`.
    ///
    /// For consistency, the arguments on all these functions follow the same
    /// pattern: first we have the opaque pointer argument ("this" above), then the
    /// input arguments, then the in-out arguments (if any) and we finish the
    /// argument list with the out arguments. We only use the return type for an out
    /// parameter if that is a plain C type, as this ensures ABI compatibility
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

     *
     * <p>would be flagged as having called {@code sqrt()} with an illegal argument.
     *
     * <h3>Performance</h3>
     *
     * <p>Avoid passing message arguments that are expensive to compute; your code will always compute
     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
     * <p>Depending on your message arguments, memory may be allocated for boxing and varargs array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                boolean onlyArgIsClosure = arguments.size() == 1 && arguments.get(0) instanceof NoArgClosureExpression;
    
                if (onlyArgIsClosure) {
                    result.append(' ');
                } else {
                    result.append("(");
                }
    
                for (int i = 0; i < arguments.size(); i++) {
                    ExpressionValue argument = arguments.get(i);
                    if (i == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    init_extra_args: Additional arguments to pass to 'init'.
    next_extra_args: Additional arguments to pass to 'next'. (Passed after the
                     normal arguments which are from the return values of 'init'.)
    finalize_extra_args: Additional arguments to pass to 'finalize'. (Passed after
                     the normal arguments which are from the return values of 'init'.)
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. src/runtime/asm_amd64.s

    	MOVQ	fn+0(FP), AX
    	MOVQ	arg+8(FP), BX
    	MOVQ	SP, DX
    	ANDQ	$~15, SP	// alignment
    	MOVQ	DX, 8(SP)
    	MOVQ	BX, DI		// DI = first argument in AMD64 ABI
    	MOVQ	BX, CX		// CX = first argument in Win64
    	CALL	AX
    	MOVQ	8(SP), DX
    	MOVQ	DX, SP
    	RET
    
    // asmcgocall_landingpad calls AX with BX as argument.
    // Must be called on the system stack.
    TEXT ·asmcgocall_landingpad(SB),NOSPLIT,$0-0
    #ifdef GOOS_windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Preconditions.java

     *
     * <p>would be flagged as having called {@code sqrt()} with an illegal argument.
     *
     * <h3>Performance</h3>
     *
     * <p>Avoid passing message arguments that are expensive to compute; your code will always compute
     * them, even though they usually won't be needed. If you have such arguments, use the conventional
     * if/throw idiom instead.
     *
     * <p>Depending on your message arguments, memory may be allocated for boxing and varargs array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.doLast(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		if err == nil && modload.UpdateWorkGoVersion(wf, modload.MainModules.GoVersion()) {
    			modload.WriteWorkFile(gowork, wf)
    		}
    	}
    }
    
    // parseArgs parses command-line arguments and reports errors.
    //
    // The command-line arguments are of the form path@version or simply path, with
    // implicit @upgrade. path@none is "downgrade away".
    func parseArgs(ctx context.Context, rawArgs []string) (dropToolchain bool, queries []*query) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // forward_pass_ops are dataset and variable ops.
      int64_t resource_count = 0;
      for (auto argument : loop_body_func.getArguments()) {
        // Check that all resource arguments are either fed to iterator get next
        // or a TPUReplicatedInput with is_packed.
    
        if (IsResourceType(argument.getType())) {
          resource_count++;
          bool is_variable = false;
          bool is_non_variable = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top