Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,247 for arguments_ (0.14 sec)

  1. src/internal/trace/raw/doc.go

    The second special case consists of stack events. These events are identified
    by the IsStack flag. These events also have a trailing unsigned integer argument
    describing the number of stack frame descriptors that follow. Each stack frame
    descriptor is on its own line following the event, consisting of four signed
    integer arguments: the PC, an integer describing the function name, an integer
    describing the file name, and the line number in that file that function was at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

            with(printer) {
                val classifier = typeSegment.classifierDescriptor
    
                append(classifier.maybeLocalClassId.asString())
    
                val arguments = typeSegment.arguments
                printCollectionIfNotEmpty(arguments, separator = ", ", prefix = "<", postfix = ">") {
                    renderTypeProjection(it, printer)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

        }
    
        public static Stream<Arguments> activateBatchModeArguments() {
            return Stream.of(
                    Arguments.of(false, new String[] {}, false),
                    Arguments.of(true, new String[] {}, true),
                    Arguments.of(true, new String[] {"--force-interactive"}, false),
                    Arguments.of(true, new String[] {"--force-interactive", "--non-interactive"}, false),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  4. src/internal/types/errors/codes.go

    	//  var x = len(s)
    	InvalidLen
    
    	// SwappedMakeArgs occurs when make is called with three arguments, and its
    	// length argument is larger than its capacity argument.
    	//
    	// Example:
    	//  var x = make([]int, 3, 2)
    	SwappedMakeArgs
    
    	// InvalidMake occurs when make is called with an unsupported type argument.
    	//
    	// See https://golang.org/ref/spec#Making_slices_maps_and_channels for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    public typealias KtEnumEntryAnnotationValue = KaEnumEntryAnnotationValue
    
    /**
     * Some constant value (which may be used as initializer of `const val`) used as annotation argument. It may be String literal, number literal or some simple expression.
     * E.g: `@A(1 +2, "a" + "b")` -- both arguments here are [KaConstantAnnotationValue]
     * @see [KaConstantValue]
     */
    public class KaConstantAnnotationValue @KaAnalysisApiInternals constructor(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      int32_t num_replicas = getNAttr().getInt();
      MutableArrayRef<OpOperand> operands = getOperation()->getOpOperands();
    
      // All replicated arguments are before packed arguments so return replicated
      // operands if the given argument is one of the replicated arguments.
      if (arg_number < num_replicated_args)
        return operands.slice(arg_number * num_replicas, num_replicas);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

        public List<String> getArguments() {
            return arguments;
        }
    
        @Override
        public DefaultGradleRunner withArguments(List<String> arguments) {
            this.arguments = Collections.unmodifiableList(new ArrayList<>(arguments));
            return this;
        }
    
        @Override
        public DefaultGradleRunner withArguments(String... arguments) {
            return withArguments(Arrays.asList(arguments));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/FunctionBinding.kt

            kFunction: KFunction<*>,
            receiver: Any,
            arguments: Map<DataParameter, Any?>,
            hasLambda: Boolean,
            configureLambdaHandler: ConfigureLambdaHandler
        ): Binding? {
            var captor: ConfigureLambdaHandler.ValueCaptor? = null
            val map = buildMap(arguments.size + 1) {
                val namedArguments = arguments.mapKeys { (param, _) -> param.name }
                var used = 0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

        return kmProperty
    }
    
    
    internal
    fun genericTypeOf(type: KmType, argument: KmType): KmType {
        type.arguments += KmTypeProjection(KmVariance.INVARIANT, argument)
        return type
    }
    
    
    internal
    fun genericTypeOf(type: KmType, arguments: Iterable<KmType>): KmType {
        arguments.forEach { genericTypeOf(type, it) }
        return type
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/reflect/makefunc.go

    // does the following:
    //
    //   - converts its arguments to a slice of Values.
    //   - runs results := fn(args).
    //   - returns the results as a slice of Values, one per formal result.
    //
    // The implementation fn can assume that the argument [Value] slice
    // has the number and type of arguments given by typ.
    // If typ describes a variadic function, the final Value is itself
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top