Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,335 for arguments_ (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r50/ArgumentPassingCrossVersionTest.groovy

        static final String ARG_1 = "argument1"
        static final String ARG_2 = "argument2"
    
        def setup() {
            buildFile << """
                if(hasProperty('$ARG_1')) logger.quiet("$ARG_1")
                if(hasProperty('$ARG_2')) logger.quiet("$ARG_2")
            """
        }
    
        def "Appends additional JVM arguments"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    	// For instance, if this abiSeq represents 3 arguments
    	// passed to a function, then the 2nd argument's steps
    	// begin at steps[valueStart[1]].
    	//
    	// Because reflect accepts Go arguments in distinct
    	// Values and each Value is stored separately, each abiStep
    	// that begins a new argument will have its offset
    	// field == 0.
    	steps      []abiStep
    	valueStart []int
    
    	stackBytes   uintptr // stack space used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/ops/gen/cpp/renderers/op_renderer.cc

        }
      }
      std::vector<string> arguments;
      arguments.reserve(args_without_default_val.size() +
                        args_with_default_val.size());
      arguments.insert(arguments.end(),
                       std::make_move_iterator(args_without_default_val.begin()),
                       std::make_move_iterator(args_without_default_val.end()));
      arguments.insert(arguments.end(),
                       std::make_move_iterator(args_with_default_val.begin()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    // (and corresponding expressions).
    // If the callee is variadic, arguments adjusts its signature to match the provided
    // arguments. The type parameters and arguments of the callee and all its arguments
    // are used together to infer any missing type arguments, and the callee and argument
    // functions are instantiated as necessary.
    // The result signature is the (possibly adjusted and instantiated) function signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/builtins.go

    	// Note: We must do this _before_ calling exprList because exprList evaluates
    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    	// For built-ins with special argument handling (make, new, etc.),
    	// evaluation is done by the respective built-in code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationArgumentsRenderer.kt

                printer: PrettyPrinter,
            ) {
                if (annotation.arguments.isEmpty()) return
                printer.printCollection(annotation.arguments, prefix = "(", postfix = ")") { argument ->
                    append(argument.name.render())
                    append(" = ")
                    append(KaAnnotationValueRenderer.render(argument.expression))
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

    }
    
    // TODO(b/260267885): We may add a device argument when we want to support
    // GPU MIG.
    def TransferToDeviceOp: Gpu_Op<"transfer_to_device"> {
      let summary = "Transfer a CPU tensor to device.";
    
      let description = [{
        Transfer a CPU tensor to device.
    
        Example:
          %device_tensor = gpurt.transfer_to_device %cpu_tensor
      }];
    
      let arguments = (ins TFTensorType);
      let results = (outs TFTensorType);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    // nor too many:
    //
    //	fmt.Printf("%d", 1, 2) // fmt.Printf call needs 1 arg, but has 2 args
    //
    // Explicit argument indexes must be no greater than the number of
    // arguments:
    //
    //	fmt.Printf("%[3]d", 1, 2) // fmt.Printf call has invalid argument index 3
    //
    // The checker also uses a heuristic to report calls to Print-like
    // functions that appear to have been intended for their Printf-like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/builtins0.go

    	_ = complex(f1()) // ERROR "not enough arguments"
    	_ = complex(f2())
    	_ = complex(f3()) // ERROR "too many arguments"
    }
    
    func copy1() {
    	copy() // ERROR "not enough arguments"
    	copy("foo") // ERROR "not enough arguments"
    	copy([ /* ERROR "copy expects slice arguments" */ ...]int{}, []int{})
    	copy([ /* ERROR "copy expects slice arguments" */ ]int{}, [...]int{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

    model to StableHLO with static input shape `4x3x224x224` for input argument with
    type `tensor<?x3x224x224xf32>`.
    
    ```bash
    tf-to-stablehlo-translate <saved-model-path> --input-arg-shapes=4,3,224,224
    ```
    
    * To convert
    [google-bert/bert-large-uncased](https://huggingface.co/google-bert/bert-large-uncased)
    to StableHLO with static input shapes `1x12`, `1x12`, and `1x12` for input
    arguments with types `tensor<?x?xi32>, tensor<?x?xi32>, tensor<?x?xi32>`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top