Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,247 for arguments_ (0.35 sec)

  1. src/cmd/compile/internal/types2/conversions.go

    		x.mode = invalid
    		return
    	}
    
    	// The conversion argument types are final. For untyped values the
    	// conversion provides the type, per the spec: "A constant may be
    	// given a type explicitly by a constant declaration or conversion,...".
    	if isUntyped(x.typ) {
    		final := T
    		// - For conversions to interfaces, except for untyped nil arguments
    		//   and isTypes2, use the argument's default type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KaAnnotationImpl.kt

    class KaAnnotationImpl(
        classId: ClassId?,
        psi: KtCallElement?,
        useSiteTarget: AnnotationUseSiteTarget?,
        hasArguments: Boolean,
    
        /**
         * A list of annotation arguments which were applied when constructing annotation. Every argument is [KaAnnotationValue]
         */
        lazyArguments: Lazy<List<KaNamedAnnotationValue>>,
        index: Int?,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/fmt/doc.go

    # Explicit argument indexes
    
    In [Printf], [Sprintf], and [Fprintf], the default behavior is for each
    formatting verb to format successive arguments passed in the call.
    However, the notation [n] immediately before the verb indicates that the
    nth one-indexed argument is to be formatted instead. The same notation
    before a '*' for a width or precision selects the argument index holding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.h

    // that can be used with InferShapeForFunction.
    // TF NodeShape uses `,` to separate dimensions, and `:` to separate arguments.
    // Ex: 1,2:3,4,5:6,? --> [[1, 2], [3, 4, 5], [6, ?]]
    absl::StatusOr<SmallVector<SmallVector<int64_t>>> ParseArgumentShapes(
        absl::string_view input_shapes);
    
    // Given a list of refined shapes matching the function arguments of func, runs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      // For While, the arguments of the calls in the body and cond regions match
      // if they are region arguments with the same region argument numbers. If the
      // 2 calls have the same value (an extern value) used as an argument, we
      // cannot do a trivial transformation because post transform, we will need to
      // pass this extern value as an argument to the function, so we cannot use the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

        llvm::StringRef function_name, llvm::ArrayRef<Tensor> arguments) {
      // Get the kernel entrypoint function.
      const Function* compute = bef_file_->GetFunction(function_name);
      CHECK(compute) << "Entrypoint function not found";
      CHECK_EQ(arguments.size() + 1, compute->num_arguments())
          << "Wrong number of arguments for function " << function_name.str();
    
      // Prepare function arguments from ready Chain and input Tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/main/resources/CLMessages.properties

    ECL0001={0} not found
    ECL0008=argument[{0}] is null.
    ECL0009=argument[{0}] is illegal. because {1}.
    ECL0010=argument[{0}] is null or empty string.
    ECL0011=argument[{0}] is null or empty array.
    ECL0012=argument[{0}] is null or empty collection.
    ECL0013=argument[{0}] is null or empty map.
    ECL0014=argument[{0}] which is null the index of array is negative integer.
    ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

        def "can construct a custom task with constructor arguments"() {
            given:
            buildFile << CUSTOM_TASK_WITH_CONSTRUCTOR_ARGS
            buildFile << "tasks.create('myTask', CustomTask, 'hello', 42)"
    
            when:
            run 'myTask'
    
            then:
            outputContains("hello 42")
        }
    
        def "can construct a custom task with constructor arguments as #description via Map"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null as String[])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[], null)", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    func Convert_kubeadm_DNS_To_v1beta3_DNS(in *kubeadm.DNS, out *DNS, s conversion.Scope) error {
    	return autoConvert_kubeadm_DNS_To_v1beta3_DNS(in, out, s)
    }
    
    // convertToArgs takes a argument map and converts it to a slice of arguments.
    // Te resulting argument slice is sorted alpha-numerically.
    func convertToArgs(in map[string]string) []kubeadm.Arg {
    	if in == nil {
    		return nil
    	}
    	args := make([]kubeadm.Arg, 0, len(in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top